Writing a New Post
This tutorial will guide you how to write a post in the Chirpy template, and it’s worth reading even if you’ve used Hugo before, as many features require specific variables to be set.
Naming and Path
Create a new file using hugo new content/post/YYYY-MM-DD-TITLE.md
. You can change the path as you like, but note that all the posts should be placed in content/post
of the root directory.
Front Matter
Basically, you need to fill the Front Matter as below at the top of the post:
|
|
You can add the following fields as needed:
|
|
The posts’ layout has been set to
post
by default, so there is no need to add the variable layout in the Front Matter block.
Categories and Tags
The categories
of each post are designed to contain up to two elements, and the number of elements in tags
can be zero to infinity. For instance:
|
|
Author Information
The author information of the post usually does not need to be filled in the Front Matter , they will be obtained from variables social.name
and the first entry of social.links
of the configuration file by default. But you can also override it as follows:
Adding author information in data/authors.yaml
(If your website doesn’t have this file, don’t hesitate to create one).
|
|
And then use author
to specify a single entry or authors
to specify multiple entries:
|
|
If you don’t want to specify the author in the frontmatter of every article, you can set a global author in config/_default/params.toml
.
|
|
The author specified in each article’s frontmatter will override the global author setting. So if any article has a different author than the global one, feel free to add the author directly in its frontmatter.
To support multilingual author information on an i18n-enabled site, you can organize author data in language-specific YAML files under data/authors/
. For instance:
- English:
data/authors/en.yaml
- Simplified Chinese:
data/authors/zh-CN.yaml
Simply populate each file with the respective author details:
|
|
|
|
Post Description
By default, the first words of the post are used to display on the home page for a list of posts, in the Further Reading section, and in the XML of the RSS feed. If you don’t want to display the auto-generated description for the post, you can customize it using the description
field in the Front Matter as follows:
|
|
Additionally, the description
text will also be displayed under the post title on the post’s page.
Table of Contents
By default, the Table of Contents (TOC) is displayed on the right panel of the post. If you want to turn it off globally, go to config/_default/params.toml
and set the value of variable toc
to false
. If you want to turn off TOC for a specific post, add the following to the post’s Front Matter:
|
|
Comments
The global setting for comments is defined by the comments.provider
option in the config/_default/params.toml
file. Once a comment system is selected for this variable, comments will be enabled for all posts.
If you want to close the comment for a specific post, add the following to the Front Matter of the post:
|
|
Media
We refer to images, audio and video as media resources in Chirpy.
URL Prefix
URL prefix is under development.
From time to time we have to define duplicate URL prefixes for multiple resources in a post, which is a boring task that you can avoid by setting two parameters.
If you are using a CDN to host media files, you can specify the
cdn
inconfig/_default/params.toml
. The URLs of media resources for site avatar and posts are then prefixed with the CDN domain name.1
cdn: https://cdn.com
To specify the resource path prefix for the current post/page range, set
media_subpath
in the front matter of the post:1 2 3
--- media_subpath: /path/to/media/ ---
The option site.cdn
and page.media_subpath
can be used individually or in combination to flexibly compose the final resource URL: [site.cdn/][page.media_subpath/]file.ext
Images
Caption
Add an html attribute caption
to the next line of an image, then it will become the caption and appear at the bottom of the image:
|
|
Size
To prevent the page content layout from shifting when the image is loaded, we should set the width and height for each image.
|
|
For an SVG, you have to at least specify its width, otherwise it won’t be rendered.
Position
By default, the image is centered, but you can specify the position by using one of the classes normal
, left
, and right
.
Once the position is specified, the image caption should not be added.
Normal position
Image will be left aligned in below sample:
1 2
 { .normal }
Float to the left
1 2
 { .left }
Float to the right
1 2
 { .right }
Dark/Light mode
You can make images follow theme preferences in dark/light mode. This requires you to prepare two images, one for dark mode and one for light mode, and then assign them a specific class (dark
or light
):
|
|
Shadow
The screenshots of the program window can be considered to show the shadow effect:
|
|
Preview Image
If you want to add an image at the top of the post, please provide an image with a resolution of 1200 x 630
. Please note that if the image aspect ratio does not meet 1.91 : 1
, the image will be scaled and cropped.
Knowing these prerequisites, you can start setting the image’s attribute:
|
|
Note that the media_subpath
can also be passed to the preview image, that is, when it has been set, the attribute path
only needs the image file name.
Video
Social Media Platform
You can embed videos from social media platforms with the following syntax:
|
|
Where Platform
is the lowercase of the platform name, and ID
is the video ID.
The following table shows how to get the two parameters we need in a given video URL, and you can also know the currently supported video platforms.
Video URL | Platform | ID |
---|---|---|
https://www.youtube.com/watch?v=H-B46URT4mg | youtube | H-B46URT4mg |
https://www.twitch.tv/videos/1634779211 | twitch | 1634779211 |
https://www.bilibili.com/video/BV1Q44y1B7Wf | bilibili | BV1Q44y1B7Wf |
Video Files
If you want to embed a video file directly, use the following syntax:
|
|
Where URL
is a URL to a video file e.g. /path/to/sample/video.mp4
.
You can also specify additional attributes for the embedded video file. Here is a full list of attributes allowed.
poster='/path/to/poster.png'
— poster image for a video that is shown while video is downloadingtitle='Text'
— title for a video that appears below the video and looks same as for imagesautoplay=true
— video automatically begins to play back as soon as it canloop=true
— automatically seek back to the start upon reaching the end of the videomuted=true
— audio will be initially silencedtypes
— specify the extensions of additional video formats separated by|
. Ensure these files exist in the same directory as your primary video file.
Consider an example using all of the above:
|
|
Audios
If you want to embed an audio file directly, use the following syntax:
|
|
Where URL
is a URL to an audio file e.g. /path/to/audio.mp3
.
You can also specify additional attributes for the embedded audio file. Here is a full list of attributes allowed.
title='Text'
— title for an audio that appears below the audio and looks same as for imagestypes
— specify the extensions of additional audio formats separated by|
. Ensure these files exist in the same directory as your primary audio file.
Consider an example using all of the above:
|
|
Pinned Posts
You can pin one or more posts to the top of the home page, and the fixed posts are sorted in reverse order according to their release date. Enable by:
|
|
Prompts
There are several types of prompts: tip
, info
, warning
, and danger
. They can be generated by adding the class prompt-{type}
to the blockquote. For example, define a prompt of type info
as follows:
|
|
Syntax
Inline Code
|
|
Filepath Highlight
|
|
Code Block
Markdown symbols ```
can easily create a code block as follows:
|
|
Specifying Language
Using ```{language}
you will get a code block with syntax highlight:
|
|
Specifying the Filename
You may have noticed that the code language will be displayed at the top of the code block. If you want to replace it with the file name, you can add the attribute file
to achieve this:
|
|
Mathematics
We use MathJax to generate mathematics. For website performance reasons, the mathematical feature won’t be loaded by default. But it can be enabled by:
|
|
After enabling the mathematical feature, you can add math equations with the following syntax:
- Block math should be added with
$$ math $$
with mandatory blank lines before and after$$
- Inserting equation numbering should be added with
$$\begin{equation} math \end{equation}$$
- Referencing equation numbering should be done with
\label{eq:label_name}
in the equation block and\eqref{eq:label_name}
inline with text (see example below)
- Inserting equation numbering should be added with
- Inline math (in lines) should be added with
$$ math $$
without any blank line before or after$$
- Inline math (in lists) should be added with
\$$ math $$
|
|
Mermaid
Mermaid support is under development
Mermaid is a great diagram generation tool. To enable it on your post, add the following to the YAML block:
|
|
Then you can use it like other markdown languages: surround the graph code with ```mermaid
and ```
.
Learn More
For more knowledge about writing Hugo posts, visit the Hugo Documentation.