Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'examples/blog/content/post/another-post.md')
-rw-r--r--examples/blog/content/post/another-post.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/blog/content/post/another-post.md b/examples/blog/content/post/another-post.md
index 2db5a923b..a063b80f4 100644
--- a/examples/blog/content/post/another-post.md
+++ b/examples/blog/content/post/another-post.md
@@ -1,7 +1,7 @@
+++
title = "Another Hugo Post"
description = "Nothing special, but one post is boring."
-date = "2014-04-09"
+date = "2014-09-02"
categories = [ "example", "configuration" ]
tags = [
"example",
@@ -10,7 +10,7 @@ tags = [
]
+++
-TOML, YAML, JSON - Oh my!
+TOML, YAML, JSON --- Oh my!
-------------------------
One of the nifty Hugo features we should cover: flexible configuration and front matter formats! This entry has front
@@ -22,7 +22,7 @@ The `toml` front matter used on this entry:
+++
title = "Another Hugo Post"
description = "Nothing special, but one post is boring."
-date = "2014-04-09"
+date = "2014-09-02"
categories = [ "example", "configuration" ]
tags = [
"example",
@@ -32,8 +32,8 @@ tags = [
+++
```
-This flexibility also extends to your site's global configuration file. You're free to use any format you prefer, simply
-name the file `config.yaml`, `config.toml`, or `config.json` and go on your merry way.
+This flexibility also extends to your site's global configuration file. You're free to use any format you prefer::simply
+name the file `config.yaml`, `config.toml` or `config.json`, and go on your merry way.
JSON Example
------------
@@ -44,7 +44,7 @@ How would this entry's front matter look in `json`? That's easy enough to demons
{
"title": "Another Hugo Post",
"description": "Nothing special, but one post is boring.",
- "date": "2014-04-09",
+ "date": "2014-09-02",
"categories": [ "example", "configuration" ],
"tags": [
"example",
@@ -52,4 +52,4 @@ How would this entry's front matter look in `json`? That's easy enough to demons
"toml"
],
}
-``` \ No newline at end of file
+```