13 KiB
如果你还没有创建 Zola 站点,使用以下命令创建新的 Zola 站点(假设你的网站名为 myblog):
zola init myblog
进入 myblog 目录:
cd myblog
添加 serene 主题:
git submodule add -b latest https://github.com/isunjn/serene.git themes/serene
将 myblog/themes/serene/config.example.toml
的内容复制到 myblog/config.toml
,参考文件中的注释和 Zola 的文档进行相应的修改
区块和页面
config.toml
中有一个 sections
配置项,它列举了网站都有哪几部分, 你应该至少有一个“博客”部分。名称和路径可以更改,注意如果你更改了博客 section 的路径(例如从 /blog
到 /posts
),那么你还应该同步更改 blog_section_path
配置项
myblog 目录此时像这样:
├── config.toml
├── content/
├── sass/
├── static/
├── templates/
└── themes/
└── serene/
创建 myblog/content/_index.md
和 myblog/content/blog/_index.md
, 文件内容如下:
myblog/content/_index.md
:
+++
template = 'home.html'
[extra]
lang = 'en'
+++
Words about you
myblog/content/blog/_index.md
:
+++
title = "My Blog"
description = "My blog site."
sort_by = "date"
template = "blog.html"
page_template = "post.html"
insert_anchor_links = "right"
generate_feed = true
[extra]
lang = 'en'
+++
路径和目录应该匹配。如果你将博客 section 的 path 更改为 /posts
,那么你创建的是 myblog/content/posts/_index.md
,而不是 myblog/content/blog/_index.md
别的 section 也一样
如果你还想要 Projects 页面,创建 myblog/content/projects/_index.md
myblog/content/projects/_index.md
:
+++
title = "My Projects"
description = "My projects page."
template = "projects.html"
[extra]
lang = 'en'
+++
blog
和 projects
是 serene 默认支持的两个 section,它们具有特定的结构和样式,在模板 blog.html
和 projects.html
中定义
Serene 还支持一个名为 prose.html
的特殊模板,它应用了与博客文章页面相同的样式,你可以将其用作自定义 section 页面的模板,例如,如果你想要一个单独的 about
页面,可以在 sections
配置项中添加一个 { name = "about", path = "/about", is_external = false }
并创建一个 myblog/content/about/_index.md
,内容如下:
+++
title = "About me"
description = "A about page of ..."
template = "prose.html"
[extra]
lang = 'en'
math = false
mermaid = false
copy = false
comment = false
+++
Hi, My name is ....
(more markdown content goes here)
你还可以创建一个 friends
页面来列出你在互联网上的朋友,一个 collections/bookmarks
页面来列出你认为有价值的书签,一个 cat
页面来放几张你家可爱猫咪的照片...... 未来 serene 可能会添加更多特定的模板
现在目录可能长这样:
├── config.toml
├── content/
│ ├── blog/
│ │ └── _index.md
│ ├── projects/
│ │ └── _index.md
│ ├── about/
│ │ └── _index.md
│ └── _index.md
├── sass/
├── static/
├── templates/
└── themes/
└── serene/
配置
Favicons
在 myblog/static
下新建目录 img
,放置 favicon 相关图片,你可以使用类似 favicon.io 这样的工具在线生成
另外放入你的头像图片文件 avatar.webp
, 推荐 webp 格式
...
├── static/
│ └── img/
│ ├── favicon-16x16.png
│ ├── favicon-32x32.png
│ ├── apple-touch-icon.png
│ └── avatar.webp
...
图标
-
将
myblog/themes/serene/static/icon
复制到myblog/static/icon
,links 中的 icon 值为其中的 svg 文件的文件名,不包含.svg
后缀 -
找到你想要的 icon 的 svg 文件,修改其宽高为 24,颜色为 currentColor:
... width="24" height="24" ... fill="currentColor" ...
-
默认图标来自 Remix Icon
代码高亮
-
将
myblog/themes/serene/highlight_themes
目录复制到myblog/highlight_themes
-
如果你将
config.toml
中的highlight_theme
设置为 zola 的 内置高亮主题 之一,浅色和深色模式都将使用该主题 -
默认情况下,serene 对亮/暗模式使用不同的主题,由
highlight_theme
、extra_syntaxes_and_themes
和highlight_themes_css
配置。 默认高亮主题serene-light
serene-dark
是 Tomorrow 主题的一个修改版本 -
如果你想要不同的主题,找到你的主题的
.tmTheme
TextMate文件,将其放在myblog/static/highlight_themes
中,然后将highlight_themes_css
的theme
值修改为该文件的名称,不带.tmTheme
扩展名。 这将在myblog/static/
中生成hl-light.css
和hl-dark.css
文件,你需要在修改theme
值之前先删除它们,以便 zola 可以重新生成 -
你可以在这个网站上找到一些 TextMate 主题
RSS
-
你可以为你的站点添加 RSS,Zola 默认的 feed 文件位于站点的根目录,在
config.toml
设置generate_feed = ture
,feed_filename
可以设置为atom.xml
或rss.xml
,对应两种不同的 rss 文件标准,myblog/content/blog/_index.md
中设置generate_feed = false
-
Serene 主题风格更像个人网站,文章在
/blog
目录下,你可能希望 feed 文件在/blog
目录下而不是根目录下,这需要你在config.toml
中设置generate_feed = false
、feed_filename = "feed.xml"
并在myblog/content/blog/_index.md
中设置generate_feed = true
-
feed.xml
使用myblog/content/blog/_index.md
中的title
和description
,其他两个则是使用config.toml
中的
Projects 页面
-
Serene 有一个 projects 页面,可以在其上展示你的项目、产品等信息
-
在
config.toml
中设置projects_page = ture
,在myblog/content/projects/
下新建一个data.toml
,在其中添加项目信息,格式如下:[[project]] name = "" desc = "" tags = ["", ""] links = [ { name = "", url = "" }, { name = "", url = "" }, ] [[project]] name = "" desc = "" tags = ["", ""] links = [ { name = "", url = "" }, { name = "", url = "" }, ]
文章过时提示
-
如果你的某篇文章具有较强的时效性,可以设置若干天后在页面上显示一个过时提示
-
config.toml
中的outdate_alert
和outdate_alert_days
设置默认的是否过时和多少天过时。是否显示过时提示以及过时天数可以在单独的一篇文章上配置,你可以将config.toml
中的outdate_alert
设置为false
,然后在有时效性的文章的 front matter 中单独开启 -
outdate_alert_text_before
和outdate_alert_text_after
是提示的具体内容,分别是在天数之前和之后
文章评论
-
Serene 支持使用 Giscus 作为文章评论系统
-
开启此功能需要新建
myblog/templates/_giscus_script.html
并将在 Giscus 网站上配置好的 script 放入其中,然后将其中data-theme
的值改为https://<your-domain-name>/giscus_light.css
, 将<your-domain-name>
改为你自己的域名,和config.toml
中的base_url
一致 -
config.toml
中的comment = true
设置所有文章开启评论,可以在文章的 front matter 中[extra]
下设置comment = false
控制单篇文章是否显示评论
Analytics
- 如需放置 Analytics 工具(如 Google Anayltics、Umami 等)的脚本,可以新建
myblog/templates/_head_extend.html
并将相应内容放入其中,该文件的内容将被添加到每个页面的 html head 中
字体
-
Serene 默认使用 Google Fonts 的 Signika 字体,如需自定义字体,新建
myblog/templates/_custom_font.html
并将从 Google Fonts 复制的字体样式表 link 标签放入其中,然后修改myblog/sass/main.scss
中的--main-font
或者--code-font
. -
为了进一步提高网站速度, 你也可以选择自己托管字体文件(可选):
- 打开 google-webfonts-helper 并选择一个字体
- 将步骤 3 中的
Customize folder prefix
改为/font/
, 然后复制该 css - 将
myblog/tempaltes/_custom_font.html
替换为一个<style> </style>
标签, 把你刚复制的 css 放在里面 - 下载步骤 4 的字体文件, 放在
myblog/static/font/
目录
自定义 CSS
-
将
myblog/themes/serene/templates/_custom_css.html
复制到myblog/templates/_custom_css.html
, 该文件里的若干变量值用于控制样式,例如主题色--primary-color
,可以自行修改 -
如果你想修改更多的内容,你只需要将相应的
themes/serene
中templates
、static
、sass
目录下的文件复制到 myblog 同名目录下,并进行修改。注意不要直接修改 serene 目录下的文件,因为如果更新主题,这些修改可能导致冲突
首页布局
-
主页默认显示
myblog/content/_index.md
的 markdown 内容 -
可以将
config.toml
中的homepage_layout
从about
更改为list
,这样博客文章列表将直接显示在首页中
写作
front matter
-
文章 Markdown 文件顶部两个
+++
内部的内容称为 front matter,支持的配置项如下:+++ title = "" date = 2022-01-01 draft = true [taxonomies] categories = ["one"] tags = ["one", "two", "three"] [extra] lang = "en" toc = true comment = true copy = true math = false mermaid = false outdate_alert = true outdate_alert_days = 120 display_tags = true truncate_summary = false +++ new post about somthing... <!-- more --> more post content...
-
你可以添加一行
<!-- more -->
, 在其前面的内容会成为文章的总结/描述, 可以设置truncate_summary = ture
来让其在最终的文章网页上不显示 -
文章文件在
myblog/content/blog
下创建,写完后将 draft 改为 false 即可
Shortcodes
-
Zola 支持 Shortcodes,可以在标准 Markdown 格式之外增加一些额外的样式或方便进行输入的模板
-
Zola 支持一些代码块注解, Serene 通过一个
codeblock
shortcode 额外支持了显示代码块文件名, 用法如下:{% codeblock(name="path/to/file") %} // a markdown code block ... {% end %}
-
除了标准 Markdown 的
![img](/path/to/img)
, Serene 还支持 figure shortcode,以便为图片添加一些说明性的文字,格式如下:{{ figure(src="/path/to/img", alt="alt text", caption="caption text") }}
这将在网页上显示为 HTML 中的
<figure></figure>
,而非<img>
,caption 的内容将居中显示在图像下方。alt 属性是可选的,但推荐加上,有助于增强可访问性为图片添加出处信息是很常见的情况,你可以直接使用
via
属性,这将在图片下方显示一个名为 via 的链接:{{ figure(src="/path/to/img", alt="some alt text", via="https://example.com") }}
Callout
-
Serene 还使用 Shortcodes 实现了 Callout, 效果如示例站点的 这个页面 所示,目前共有 6 种:
note
important
warning
alert
question
tip
,格式如下,header 属性是可选的:{% note(header="Note") %} note text {% end %}
-
如果读者通过 RSS 阅读你的文章,这些 Callouts 将会显示为普通的
<blockquote>
KaTeX
-
在文章 front matter 中设置
math = true
开启 KaTeX 支持 -
行内公式
$...$
,块级公式$$...$$
Mermaid
-
在文章 front matter 中设置
mermaid = true
开启 Mermaid 支持,然后用如下格式插入图表:{% mermaid() %} flowchart LR A[Hard] -->|Text| B(Round) B --> C{Decision} C -->|One| D[Result 1] C -->|Two| E[Result 2] {% end %}
构建部署
本地预览:
zola serve
构建站点:
zola build
部署静态站点请参考 Zola 关于部署的文档
更新
-
更新主题前请在 GitHub 上查看 CHANGELOG.md 以确认是否有 breaking changes
-
如果你从
myblog/themes/serene
复制了一些文件到myblog/
进行自定义,例如_custom_css.html
或main.scss
,那么你应该在更新之前记录下你修改的内容,在更新后重新复制这些文件, 然后重新修改这些文件.config.toml
也要重新复制 -
你可以在 GitHub 上 watch(
watch > custom >releases > apply
)此项目,在有新版本时会收到提醒
git submodule update --remote themes/serene
Happy blogging :)