forked from mirror/Mainroad
Change front matter format to yaml
This commit is contained in:
parent
0dc6f7f283
commit
0c6ad1a51e
5 changed files with 37 additions and 48 deletions
exampleSite/content
|
@ -1,8 +1,8 @@
|
|||
+++
|
||||
title = "About Hugo"
|
||||
date = "2014-04-09"
|
||||
menu = "main"
|
||||
+++
|
||||
---
|
||||
title: About Hugo
|
||||
date: 2014-04-09
|
||||
menu: main
|
||||
---
|
||||
|
||||
Hugo is a static site engine written in Go.
|
||||
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
---
|
||||
author: "Michael Henderson"
|
||||
date: 2014-09-28
|
||||
linktitle: Creating a New Theme
|
||||
next: /tutorials/github-pages-blog
|
||||
prev: /tutorials/automated-deployments
|
||||
title: Creating a New Theme
|
||||
weight: 10
|
||||
date: 2014-09-28
|
||||
author: Michael Henderson
|
||||
---
|
||||
|
||||
|
||||
|
|
|
@ -1,21 +1,18 @@
|
|||
+++
|
||||
title = "(Hu)go Template Primer"
|
||||
description = ""
|
||||
tags = [
|
||||
"go",
|
||||
"golang",
|
||||
"templates",
|
||||
"themes",
|
||||
"development",
|
||||
]
|
||||
date = "2014-04-02"
|
||||
categories = [
|
||||
"Development",
|
||||
"golang",
|
||||
]
|
||||
menu = "main"
|
||||
thumbnail = "img/placeholder.png"
|
||||
+++
|
||||
---
|
||||
title: "(Hu)go Template Primer"
|
||||
date: 2014-04-02
|
||||
thumbnail: "img/placeholder.png"
|
||||
tags:
|
||||
- "go"
|
||||
- "golang"
|
||||
- "templates"
|
||||
- "themes"
|
||||
- "development"
|
||||
categories:
|
||||
- "Development"
|
||||
- "golang"
|
||||
menu: main
|
||||
---
|
||||
|
||||
Hugo uses the excellent [go][] [html/template][gohtmltemplate] library for
|
||||
its template engine. It is an extremely lightweight engine that provides a very
|
||||
|
|
|
@ -1,19 +1,16 @@
|
|||
+++
|
||||
title = "Getting Started with Hugo"
|
||||
description = ""
|
||||
tags = [
|
||||
"go",
|
||||
"golang",
|
||||
"hugo",
|
||||
"development",
|
||||
]
|
||||
date = "2014-04-02"
|
||||
categories = [
|
||||
"Development",
|
||||
"golang",
|
||||
]
|
||||
menu = "main"
|
||||
+++
|
||||
---
|
||||
title: Getting Started with Hugo
|
||||
date: 2014-04-02
|
||||
tags:
|
||||
- "go"
|
||||
- "golang"
|
||||
- "hugo"
|
||||
- "development"
|
||||
categories:
|
||||
- "Development"
|
||||
- "golang"
|
||||
menu: main
|
||||
---
|
||||
|
||||
## Step 1. Install Hugo
|
||||
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
---
|
||||
title: Migrate to Hugo from Jekyll
|
||||
date: 2014-03-10
|
||||
linktitle: Migrating from Jekyll
|
||||
menu:
|
||||
main:
|
||||
name: Jekyll migration
|
||||
prev: /tutorials/mathjax
|
||||
title: Migrate to Hugo from Jekyll
|
||||
weight: 10
|
||||
weight: 10
|
||||
---
|
||||
|
||||
## Move static content to `static`
|
||||
|
|
Loading…
Add table
Reference in a new issue