diff options
Diffstat (limited to 'examples/blog/content/post/hello-hugo.md')
-rw-r--r-- | examples/blog/content/post/hello-hugo.md | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/examples/blog/content/post/hello-hugo.md b/examples/blog/content/post/hello-hugo.md index d88bd43c6..59f2e7b3e 100644 --- a/examples/blog/content/post/hello-hugo.md +++ b/examples/blog/content/post/hello-hugo.md @@ -1,7 +1,7 @@ --- title: "Hello Hugo!" description: "Saying 'Hello' from Hugo" -date: "2014-04-08" +date: "2014-09-01" categories: - "example" - "hello" @@ -12,20 +12,20 @@ tags: --- Hello from Hugo! If you're reading this in your browser, good job! The file `content/post/hello-hugo.md` has been -converted into a complete html document by Hugo. Isn't that pretty nifty? +converted into a complete HTML document by Hugo. Isn't that pretty nifty? A Section --------- Here's a simple titled section where you can place whatever information you want. -You can use inline HTML if you want, but really there's not much that markdown can't do. +You can use inline HTML if you want, but really there's not much that Markdown can't do. -Showing Off With Markdown +Showing off with Markdown ------------------------- A full cheat sheet can be found [here](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) -or through [google](https://google.com/). +or through [Google](https://google.com/). There are some *easy* examples for styling, though. I can't **emphasize** that enough. Creating [links](https://google.com/) or `inline code` blocks are very straightforward. @@ -35,7 +35,7 @@ There are some *easy* examples for styling, though. I can't **emphasize** that e Creating [links](https://google.com/) or `inline code` blocks are very straightforward. ``` -Front Matter For Fun +Front Matter for Fun -------------------- This is the meta data for this post. It is located at the top of the `content/post/hello-hugo.md` markdown file. @@ -44,7 +44,7 @@ This is the meta data for this post. It is located at the top of the `content/po --- title: "Hello Hugo!" description: "Saying 'Hello' from Hugo" -date: "2014-04-09" +date: "2014-09-01" categories: - "example" - "hello" @@ -55,7 +55,7 @@ tags: --- ``` -This section, called 'Front Matter', is what tells Hugo about the content in this file. The title of the item,the -description, the date it was posted. In our example we're adding two custom bits of data, too. The `categories` and +This section, called 'Front Matter', is what tells Hugo about the content in this file: the `title` of the item, the +`description`, and the `date` it was posted. In our example, we've added two custom bits of data too. The `categories` and `tags` sections are used in this example for indexing/grouping content. You will learn more about what that means by -examining the code in this example and through reading the Hugo [documentation](http://hugo.spf13.com/overview/introduction)
\ No newline at end of file +examining the code in this example and through reading the Hugo [documentation](http://hugo.spf13.com/overview/introduction). |