chore(docs): update docs about article licensing

pull/832/head
ppoffice 2020-08-29 16:44:57 -04:00
parent 47c7710066
commit 5f67618cd3
No known key found for this signature in database
GPG Key ID: B33335481CC0D498
3 changed files with 35 additions and 4 deletions

View File

@ -9,7 +9,7 @@
"bulma-stylus": "0.8.0",
"hexo": "^5.0.2",
"hexo-algolia": "^1.3.1",
"hexo-component-inferno": "^0.8.0",
"hexo-component-inferno": "^0.8.1",
"hexo-deployer-git": "^2.0.0",
"hexo-filter-github-emojis": "^2.1.0",
"hexo-generator-archive": "^1.0.0",

View File

@ -289,6 +289,22 @@ article:
readtime: true
{% endcodeblock %}
### Article Licensing
You can show a section at the end of your posts/pages describing the licensing of your work.
Both text and icons are accepted as license links.
This configuration is the same as `links` in the navigation bar or the footer:
{% codeblock themes/icarus/_config.yml lang:yaml %}
article:
# Article licensing block
licenses:
Creative Commons:
icon: fab fa-creative-commons
url: 'https://creativecommons.org/'
'CC BY-NC-SA 4.0': 'https://creativecommons.org/licenses/by-nc-sa/4.0/'
{% endcodeblock %}
### Sidebar
To make a sidebar fixed when you scroll the page, set the `sticky` setting of that sidebar to `true` in

View File

@ -57,7 +57,7 @@ variant: default
### Logo
设置你站点的logo。
此logo会显示在导航栏和页面尾部
此logo会显示在导航栏和页
`logo`配置的值既可以是你的logo图片的路径或URL地址
{% codeblock themes/icarus/_config.yml lang:yaml %}
@ -206,9 +206,9 @@ navbar:
url: <链接URL>
{% endcodeblock %}
### 页面尾部
### 页
`footer`部分定义了页面尾部右侧的链接。
`footer`部分定义了页右侧的链接。
链接的配置格式与`navbar`中`links`的配置格式完全一致。
{% codeblock themes/icarus/_config.yml lang:yaml %}
@ -290,6 +290,21 @@ article:
readtime: true
{% endcodeblock %}
### 文章许可协议
你可以在你的文章/页面的底部展示你的作品的使用许可,许可链接可以是文字或者图标。
这里的配置与导航栏或者页脚的`links`配置一致:
{% codeblock themes/icarus/_config.yml lang:yaml %}
article:
# 文章许可协议
licenses:
Creative Commons:
icon: fab fa-creative-commons
url: 'https://creativecommons.org/'
'CC BY-NC-SA 4.0': 'https://creativecommons.org/licenses/by-nc-sa/4.0/'
{% endcodeblock %}
### 侧边栏
设置`sidebar`中某个侧边栏的`sticky`为`true`来让它的位置固定而不跟随页面滚动。