14 KiB
If you haven't created a zola site yet, create a new zola site with the following command (assuming your site is called myblog
):
zola init myblog
Enter the directory:
cd myblog
Add the serene theme:
git submodule add -b latest https://github.com/isunjn/serene.git themes/serene
Copy the content of myblog/themes/serene/config.example.toml
to myblog/config.toml
, refer to the comments in the file and Zola's documentation to modify accordingly
Sections and pages
There is a sections
config item in your config.toml
, which enumerates the sections your website has. You should have at least one blog
section. The name and path can be changed, be noticed that if you changed the blog section path (e.g. from /blog
to /posts
), then you should also change blog_section_path
config item.
The myblog directory now looks like this:
├── config.toml
├── content/
├── sass/
├── static/
├── templates/
└── themes/
└── serene/
Create myblog/content/_index.md
and myblog/content/blog/_index.md
with the following content:
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'
+++
The path and the directory should match. If you changed the blog section path to /posts
, then you create myblog/content/posts/_index.md
, rather than myblog/content/blog/_index.md
. The same goes for the others.
If you want to display a projects page (as you see in the demo site), also create myblog/content/projects/_index.md
:
+++
title = "My Projects"
description = "My projects page."
template = "projects.html"
[extra]
lang = 'en'
+++
The blog
and projects
are two sections that serene supports by default, they have specific structures and styles, defined in template blog.html
and projects.html
.
Serene also support a special template called prose.html
, it applies the same styles of blog post page and you can use it as a section template for a custom section page, for example if you want a separate about
page, you can add a { name = "about", path = "/about", is_external = false }
to the sections
config item and create a myblog/content/about/_index.md
with the following content:
+++
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)
You may also create a friends
page to list all your friends on the internet, a collections/bookmarks
page to list your considered valuable bookmarks, a cat
page to post a few pics of your lovely cat... In the future, serene may add more specific templates.
Now the myblog directory may looks like this:
├── config.toml
├── content/
│ ├── blog/
│ │ └── _index.md
│ ├── projects/
│ │ └── _index.md
│ ├── about/
│ │ └── _index.md
│ └── _index.md
├── sass/
├── static/
├── templates/
└── themes/
└── serene/
Configuration
Favicons
-
Create a new directory
img
undermyblog/static
, put favicon related files here, you can use tools like favicon.io to generate those files -
Also put your avatar picture file
avatar.webp
here, webp format is recommended... ├── static/ │ └── img/ │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── apple-touch-icon.png │ └── avatar. webp ...
Icon
-
Copy
myblog/themes/serene/static/icon
directory tomyblog/static/icon
, the icon value inlinks
is the file name of the svg file in it, without the.svg
suffix -
Find the svg file of the icon you want, modify its width and height to 24, and the color to currentColor:
... width="24" height="24" ... fill="currentColor" ...
-
The default icons came from Remix Icon
Code highlight
-
Copy
myblog/themes/serene/highlight_themes
directory tomyblog/highlight_themes
. -
If you set
highlight_theme
inconfig.toml
to one of zola's built-in highlight themes, you will get that theme used in both light and dark mode. -
By default serene use different themes for light/dark modes, configured by
highlight_theme
,extra_syntaxes_and_themes
andhighlight_themes_css
. The default highlight themeserene-light
serene-dark
is a modified version of Tomorrow theme. -
If you want a different theme, find the
.tmTheme
TextMate file of your theme, put it inmyblog/static/highlight_themes
, and then modify thetheme
value ofhighlight_themes_css
to that file's name, without.tmTheme
extension. This will generate ahl-light.css
and ahl-dark.css
file inmyblog/static/
, you may have to delete them first before you change thetheme
value, so zola can re-generate. -
You can find some TextMate themes on this website.
RSS
-
You can add rss to your site, Zola's default feed file is located in the root directory of the site, set
generate_feed = true
inconfig.toml
,feed_filename
can be set toatom.xml
orrss.xml
, corresponding to two different rss file standards, you should also setgenerate_feed = false
inmyblog/content/blog/_index.md
-
The serene theme looks more like a personal website, the posts are in the
/blog
directory, you may want the feed file to be in the/blog
directory instead of the root directory, this requires you to setgenerate_feed = false
feed_filename = "feed.xml"
inconfig.toml
, and setgenerate_feed = true
inmyblog/content/blog/_index.md
-
feed.xml
usestitle
anddescription
frommyblog/content/blog/_index.md
, the other two useconfig.toml
's
Projects page
-
Serene has a projects page where you can showcase your projects, products, etc.
-
Create a new
data.toml
undermyblog/content/projects/
, add projects information in it, the format is as follows:[[project]] name = "" desc = "" tags = ["", ""] links = [ { name = "", url = "" }, { name = "", url = "" }, ] [[project]] name = "" desc = "" tags = ["", ""] links = [ { name = "", url = "" }, { name = "", url = "" }, ]
Outdated alert
-
If one of your posts has strong timeliness, you can set an outdated alert to be displayed on the page after certain days
-
outdate_alert
andoutdate_alert_days
inconfig.toml
set the default whether to be outdated and how many days to be outdated. These two can also be configured on a separate post, you can setoutdate_alert
inconfig.toml
tofalse
, and then enable it separately in the front matter of time-sensitive posts -
outdate_alert_text_before
andoutdate_alert_text_after
are the specific content of the alert, before and after the number of days respectively
Comments
-
Serene supports using giscus as the comment system
-
To enable it, you need to create
myblog/templates/_giscus_script.html
and put the script configured on the giscus website into it, then change the value ofdata-theme
tohttps://<your-domain-name>/giscus_light.css
, replace<your-domain-name>
with you domain name, same asbase_url
inconfig.toml
-
comment = true
inconfig.toml
sets all posts to enable comments, you can setcomment = false
under[extra]
in the front matter of the post to control whether a specific post displays comments
Analytics
- To place scripts for analytics tools (such as Google Anayltics, Umami, etc.), you can create a new
myblog/templates/_head_extend.html
and put the corresponding content in it. The content of this file will be added to the html head of each page
Fonts
-
Serene uses the Signika font of Google Fonts by default. If you want a different font, create a new
myblog/templates/_custom_font.html
and put the font link tags you copied from google fonts website into it, and then modify--main-font
or--code-font
inmyblog/sass/main.scss
. -
For performance reason, you may want to self-host font files (optional):
- Open google-webfonts-helper and choose your font
- Modify
Customize folder prefix
of step 3 to/font/
and then copy the css - Replace the content of
myblog/templates/_custom_font.html
with a<style> </style>
tag, with the css you just copied in it. - Download step 4 font files and put them in
myblog/static/font/
folder
Custom CSS
-
Copy
myblog/themes/serene/templates/_custom_css.html
tomyblog/templates/_custom_css.html
, variables in this file are used to control styles, such as the theme color--primary-color
, you can modify them as you want -
If you want to customize more, you only need to copy that file under the
templates
,static
,sass
directory in the correspondingthemes/serene
to the same name directory ofmyblog
, and modify it. Be careful not to directly modify the files under the serene directory, because these modifications may cause conflicts if the theme is updated
Homepage layout
-
By default, homepage displays markdown content of your
myblog/content/_index.md
-
You can change
homepage_layout
inconfig.toml
fromabout
tolist
, then the blog post list will be displayed directly in the homepage
Writing
front matter
-
The content inside the two
+++
at the top of the post markdown file is called front matter, and the supported configuration items are as follows:+++ 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...
-
You can add a
<!-- more -->
line, the content before it will become the summary/description of the post. You can settruncate_summary = true
to remove the summary from the post webpage. -
Post files are created under
myblog/content/blog
, after done writing, changedraft
to false
Shortcodes
-
Zola supports 'shortcodes', which can be used to add some extra styles or templates in addition to the standard markdown format
-
Zola support some annotations for code blocks. Serene add another one to display the file name:
codeblock
, use it like this:{% codeblock(name="path/to/file") %} // a markdown code block ... {% end %}
-
In addition to
![img](/path/to/img)
of standard markdown, serene also supports afigure
shortcode to add some explanatory text to the image:{{ figure(src="/path/to/img", alt="alt text", caption="caption text") }}
This will be displayed as
<figure></figure>
in HTML on the web page instead of<img>
, and the content of the caption will be centered below the image. The alt attribute is optional but recommended to help enhance accessibilityAdding attribution information to a image is very common, you can directly use the
via
attribute, which will display a link named via below the image:{{ figure(src="/path/to/img", alt="some alt text", via="https://example.com") }}
Callout
-
Serene also uses shortcodes to implement callouts, the effect is shown in this page of the demo site, there are currently 6 types:
note
important
warning
alert
question
tip
, the format is as follows, the header attribute is optional:{% note(header="Note") %} note text {% end %}
-
If people read your posts via rss reader, these callouts will appear as normal
<blockquote>
KaTeX
-
Set
math = true
in the front matter to enable KaTeX support -
Inline formula
$...$
, block-level formula$$...$$
Mermaid
-
Set
mermaid = true
in the front matter to enable Mermaid support, and then insert a chart in the following format:{% mermaid() %} flowchart LR A[Hard] -->|Text| B(Round) B --> C{Decision} C -->|One| D[Result 1] C -->|Two| E[Result 2] {% end %}
Build & Deploy
Local preview:
zola serve
Build the site:
zola build
To deploy a static site, please refer to zola's documentation about deployment
Update
-
Please check the CHANGELOG.md on github for breaking changes before updating the theme
-
If you copied some files from
myblog/themes/serene
tomyblog/
for customization, such as_custom_css.html
ormain.scss
, then you should record what you have modified before you update, re-copy those files and re-apply your modification after updating. Theconfig.toml
should be re-copied too. -
You can watch (
watch > custom > releases > apply
) this project on github to be reminded of a new release
git submodule update --remote themes/serene
Happy blogging :)