基本配置
同时在win和mac上部署了hugo,都使用了Webstorm,本来打算借助Webstorm对Git的集成的优势,但使用下来体验并不好,最后还是在Webstorm中的Terminal中进行git。
|
|
|
|
百度不收录Github Page
首先尝试zeit.co提供的免费CDN,但百度仍然不能正常抓取,抓取测试提示308错误,而且不能认证为https,原因现在还没找到。另外,Gitlab Page也可以考虑,但是,gitlab并不是提交hugo构建后的静态文件,而是接受原资源,进而在其服务器里自动构建,要想更便捷的同时同步Github和Gitlab的Page内容并不容易。
插入自定义js, css
全局加载
custom_css = [ ] # custom_css = ["scss/custom.scss"] root/assets/scss/custom.scss
custom_js = ["js/first_page.js"] # custom_js = ["js/custom.js"] root/assets/js/custom.js
- 自定义链接下划线css失败。默认情况下,普通段落中链接文字显示下划线,但列表等中的链接文字不显示下划线,比如:Gitlab Page,仍然会有下划线。
- 计划通过加入typescript编译过后的js文件以及d3js与Github page结合,封装一些d3js绘图的模块。
局部加载
- 在Front Matter中添加
--- title: "Your catchy title" cdnjs: ["https://cdnjs.cloudflare.com/ajax/libs/d3/5.15.1/d3.min.js"] custom_js_in_post: ["js/first_page.js"] ---
- 在
themes/zzo/partials/head/custom-head.html
中添加(也可以在自定义布局的文件夹下新建相似目录):1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
{{ if .Params.cdnjs }} {{ range $cdnjsone := .Params.cdnjs }} <script src="{{ $cdnjsone }}"></script> {{ end }} {{ end }} {{ if .Params.custom_js_in_post }} {{ range .Params.custom_js_in_post }} {{ $custom_template := resources.Get . }} {{ if $custom_template }} {{ $custom_js := $custom_template | resources.Minify | resources.Fingerprint }} <script defer src="{{ $custom_js.RelPermalink }}"></script> {{ end }} {{ end }} {{ end }}
调用d3js示例
Mac Win 协同编辑
aa
改动的内容
viewport size 改成默认1440px