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 Jekyll before, as many features require specific variables to be set.
Naming and Path
Create a new file named YYYY-MM-DD-TITLE.EXTENSION and put it in the _posts of the root directory. Please note that the EXTENSION must be one of md and markdown. If you want to save time of creating files, please consider using the plugin Jekyll-Compose to accomplish this.
Front Matter
Basically, you need to fill the Front Matter as below at the top of the post:
---
title: TITLE
date: YYYY-MM-DD HH:MM:SS +/-TTTT
categories: [TOP_CATEGORIE, SUB_CATEGORIE]
tags: [TAG] # TAG names should always be lowercase
---
The posts’ layout has been set to
postby default, so there is no need to add the variable layout in the Front Matter block.
Timezone of Date
To accurately record the release date of a post, you should not only set up the timezone of _config.yml but also provide the post’s timezone in variable date of its Front Matter block. Format: +/-TTTT, e.g. +0800.
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:
---
categories: [Animal, Insect]
tags: [bee]
---
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.yml (If your website doesn’t have this file, don’t hesitate to create one).
<author_id>:
name: <full name>
twitter: <twitter_of_author>
url: <homepage_of_author>
And then use author to specify a single entry or authors to specify multiple entries:
---
author: <author_id> # for single entry
# or
authors: [<author1_id>, <author2_id>] # for multiple entries
---
Having said that, the key author can also identify multiple entries.
The benefit of reading the author information from the file
_data/authors.ymlis that the page will have the meta tagtwitter:creator, which enriches the Twitter Cards and is good for SEO.
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:
---
description: Short summary of the post.
---
Additionally, the description text will also be displayed under the post title on the post’s page.
Table of Contents
By default, the T able o f C ontents (TOC) is displayed on the right panel of the post. If you want to turn it off globally, go to _config.yml 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:
---
toc: false
---
Media
We refer to images, audio and video as media resources in Chirpy.
URL Prefix
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
cdnin_config.yml. The URLs of media resources for site avatar and posts are then prefixed with the CDN domain name.
cdn: https://cdn.com
- To specify the resource path prefix for the current post/page range, set
media_subpathin the front matter of the post:
---
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 italics to the next line of an image, then it will become the caption and appear at the bottom of the image:
_Image Caption_
Size
To prevent the page content layout from shifting when the image is loaded, we should set the width and height for each image.
{: width="700" height="400" }
For an SVG, you have to at least specify its width, otherwise it won’t be rendered.
Starting from Chirpy v5.0.0, height and width support abbreviations (height → h, width → w). The following example has the same effect as the above:
{: w="700" h="400" }
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:
{: .normal }
- Float to the left
{: .left }
- Float to the right
{: .right }
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:
---
image:
path: /path/to/image
alt: image alternative text
---
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.
For simple use, you can also just use image to define the path.
---
image: /path/to/image
---
Video
Social Media Platform
You can embed videos from social media platforms with the following syntax:
{% include embed/{Platform}.html id='{ID}' %}
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:
{% include embed/video.html src='{URL}' %}
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 silenced
Consider an example using all of the above:
{% include embed/video.html
src='/path/to/video.mp4'
types='ogg|mov'
poster='poster.png'
title='Demo video'
autoplay=true
loop=true
muted=true
%}
Audios
If you want to embed an audio file directly, use the following syntax:
{% include embed/audio.html src='{URL}' %}
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 images
Consider an example using all of the above:
{% include embed/audio.html
src='/path/to/audio.mp3'
types='ogg|wav|aac'
title='Demo audio'
%}
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:
---
pin: true
---
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:
> Example line for prompt.
{: .prompt-info }
Syntax
Inline Code
Filepath Highlight
````/path/to/a/file.extend`{: .filepath}
### Code Block
Markdown symbols ````````` can easily create a code block as follows:
This is a plaintext code snippet.
#### Specifying Language
Using ``````{language}``` you will get a code block with syntax highlight:
``````yaml
key: value
``````
> The Jekyll tag `{% highlight %}` is not compatible with this theme.
#### Line Number
By default, all languages except `plaintext`, `console`, and `terminal` will display line numbers. When you want to hide the line number of a code block, add the class `nolineno` to it:
``````shell
echo 'No more line numbers!'
``````
{: .nolineno }
#### 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:
``````shell
# content
```
{: file="path/to/file" }
``````
## Mathematics
We use [**MathJax**](https://www.mathjax.org/) to generate mathematics. For website performance reasons, the mathematical feature won’t be loaded by default. But it can be enabled by:
````yaml
---
math: true
---
````
## Mermaid
[**Mermaid**](https://github.com/mermaid-js/mermaid) is a great diagram generation tool. To enable it on your post, add the following to the YAML block:
````yaml
---
mermaid: true
---
````
Then you can use it like other markdown languages: surround the graph code with ``````mermaid``` and `````````.