hexo之jacman主题修改记录
config.yml修改
- menu增加Resources: /userful-resources
- widgets更改为[category, tag, links]
- 增加sitemap
1
2sitemap:
path: sitemap.xml - 更改主题颜色theme: ‘#3d85c6’
- 主页不展开expand: false
- 关闭文章边栏close_aside: true
- creative_commons: by-nc-sa
- 更改作者信息
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16author:
intro_line1: "Hello" ## your introduction on the bottom of the page
intro_line2: "This is my blog!" ## the 2nd line
weibo: 5748426185 ## e.g. 5748426185 or 2176287895 for http://weibo.com/2176287895
weibo_verifier: cd4768ca ## e.g. cd4768ca Your weibo-show widget verifier ,if you use weibo-show it is needed.
tsina: mchsinx ## e.g. 2176287895 Your weibo ID,It will be used in share button.
douban: ## e.g. wuchong1014 or your id for https://www.douban.com/people/wuchong1014
zhihu: ## e.g. jark for http://www.zhihu.com/people/jark
email: ## e.g. imjark@gmail.com
twitter: mchsinx ## e.g. jarkwu for https://twitter.com/jarkwu
github: mchsinx ## e.g. wuchong for https://github.com/wuchong
facebook: ## e.g. imjark for https://facebook.com/imjark
linkedin: ## e.g. wuchong1014 for https://www.linkedin.com/in/wuchong1014
google_plus: ## e.g. "111190881341800841449" for https://plus.google.com/u/0/111190881341800841449, the "" is needed!
stackoverflow: ## e.g. 3222790 for http://stackoverflow.com/users/3222790/jark
## if you set them, the corresponding share button will show on the footer - 更改友情链接
1
2links:
Mchsinx: http://www.mchsinx.com, 导航网站 - 更改统计代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#### Analytics
google_analytics:
enable: true
id: UA-64362927-1 ## e.g. UA-46321946-2 your google analytics ID.
## You MUST upgrade to Universal Analytics first!
## https://developers.google.com/analytics/devguides/collection/upgrade/?hl=zh_CN
statcounter: # 需自行在analytics.ejs中配置参数
enable: true
baidu_tongji:
enable: true
sitecode: 3d6283374c5e33764e4cf6c0b398f634 ## e.g. e6d1f421bbc9962127a50488f9ed37d1 your baidu tongji site code
cnzz_tongji:
enable: true
siteid: 1255560261 ## e.g. 1253575964 your cnzz tongji site id
servername: s95
ibruce_tongji: # 不蒜子计数
enable: true - 增加swift_search搜索
- 增加百度推送
增加swiftype_search搜索和百度推送
- 在\layout_partial\after_footer.ejs中添加代码
1 | <!-- swiftype search Begin(1/2)--> |
需要在主题配置文件中添加开关
1 | swift_seach: |
- 在\layout_partial\header.ejs中增加代码,插入在
<% } else if(theme.baidu_search.enable){ %>
之前
1 | <!-- swiftype search Begin(2/2)--> |
修改百度统计和CNZZ统计,增加statcounter
- 在\layout_partial\analytics.ejs中修改代码
1 | <% if (theme.google_analytics.enable){ %> |
增加不蒜子统计
在\layout_partial\footer.ejs中修改代码,在最后一个</p>
之前增加代码
1 | <!-- 不蒜子统计 --> |
修正谷歌搜索
在google.com之前加www
增加百度自定义搜索
在\layout_partial\hearder.ejs中添加代码
1 | <% } else if(theme.baidu_search_my.enable){ %> |
在下面这段代码之前
1 | <% } else { %> |
增加”更新时间”
将\layout_partial\post\hearder.ejs相应代码修改为
1
2
3
4<p class="article-time">
<time datetime="<%= date_xml(item.date) %>" itemprop="datePublished"> <%= __('datepublished') %> <%= item.date.format(config.datetime_format) %></time>
<time postupdated="<%= date_xml(item.updated) %>" itemprop="dateModified"> <%= __('dateModified') %> <%= item.updated.format(config.datetime_format) %></time>
</p>更改站点配置文件
在time_format: HH:mm:ss
下面添加datetime_format: YYYY-MM-DD HH:mm:ss
在语言文件zh-CN.yml中增加
dateModified: 更新于
经测试,文章Front-matter部分也可以不写updated,hexo会自动记录更新时间