From 3e4b83a29798fb45eacfa52cff00dd5400e4f933 Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Thu, 17 Oct 2019 03:23:38 +0800 Subject: [PATCH] Update tutorial. --- _posts/2019-08-08-write-a-new-post.md | 24 +++++------------------- 1 file changed, 5 insertions(+), 19 deletions(-) diff --git a/_posts/2019-08-08-write-a-new-post.md b/_posts/2019-08-08-write-a-new-post.md index c717482..27716a9 100644 --- a/_posts/2019-08-08-write-a-new-post.md +++ b/_posts/2019-08-08-write-a-new-post.md @@ -1,5 +1,5 @@ --- -title: "Write a new Post" +title: "Write a New Post" date: 2019-08-08 14:10:00 +0800 categories: [Blogging, Tutorial] tags: [writting] @@ -24,22 +24,13 @@ tags: [TAG] > **Note**: The posts' ***layout*** has been set to `post` by default, so there is no need to add the variable ***layout*** in Front Matter block. -### Categories and Tags +- **The TimeZone of Date** -The pages for all the categories and tags are placed in the `categoreis` and `tags` respectively. + To ensure that the posts' release date matches the city you live in, please modify the value of `timezone` in the file `_config.yml`. A list of all available values can be found on [TimezoneConverter](http://www.timezoneconverter.com/cgi-bin/findzone/findzone) or [Wikipedia](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). -Let's say there is a post with title `The Beautify Rose`, it's Front Matter as follow: - -```yaml ---- -title: "The Beautify Rose" -categories: [Plant] -tags: [flower] ---- -``` - -> **Note**: `categories` is designed to contain up to two elements. +- **Categories and Tags** + The `categories` of each post is designed to contain up to two elements, and the number of elements in `tag` can be zero or infinite. ## Table of Contents @@ -101,8 +92,3 @@ If you want to display the **Liquid** snippet, surround the liquid code with `{% ## Learn More For more knowledge about Jekyll posts, visit the [Jekyll Docs: Posts](https://jekyllrb.com/docs/posts/). -## See Also - -* [Getting Started]({{ site.baseurl }}/posts/getting-started/) -* [Text and Typography]({{ site.baseurl }}/posts/text-and-typography/) -* [Customize the Favicon]({{ site.baseurl }}/posts/customize-the-favicon/)