mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Fix front matter for 'Creating a New Theme'
There seems to be an issue with TOML and certain menu structures. Current workaround: YAML.
This commit is contained in:
parent
a6d3862b87
commit
9f0f73f452
1 changed files with 13 additions and 11 deletions
|
@ -1,14 +1,16 @@
|
|||
+++
|
||||
author = "Michael Henderson"
|
||||
date = "2014-09-28"
|
||||
linktitle = "Creating a New Theme"
|
||||
next = "/tutorials/mathjax"
|
||||
prev = "/community/contributing"
|
||||
title = "Creating a New Theme"
|
||||
weight = 10
|
||||
[[menu.main]]
|
||||
parent = "tutorials"
|
||||
+++
|
||||
---
|
||||
author: "Michael Henderson"
|
||||
date: 2014-09-28
|
||||
linktitle: Creating a New Theme
|
||||
menu:
|
||||
main:
|
||||
parent: tutorials
|
||||
next: /tutorials/mathjax
|
||||
prev: /community/contributing
|
||||
title: Creating a New Theme
|
||||
weight: 10
|
||||
---
|
||||
|
||||
|
||||
## Introduction
|
||||
|
||||
|
|
Loading…
Reference in a new issue