mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Converting front matter to YAML
This commit is contained in:
parent
2b90779f0f
commit
05875153bc
66 changed files with 625 additions and 560 deletions
|
@ -1,13 +1,15 @@
|
|||
---
|
||||
title: "Contributing to Hugo"
|
||||
date: "2013-07-01"
|
||||
aliases: ["/doc/contributing/", "/meta/contributing/"]
|
||||
weight: 30
|
||||
aliases:
|
||||
- /doc/contributing/
|
||||
- /meta/contributing/
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: 'community'
|
||||
prev: "/community/press"
|
||||
next: "/tutorials/github_pages_blog"
|
||||
parent: community
|
||||
next: /tutorials/github_pages_blog
|
||||
prev: /community/press
|
||||
title: Contributing to Hugo
|
||||
weight: 30
|
||||
---
|
||||
|
||||
All contributions to Hugo are welcome. Whether you want to scratch an itch, or simply contribute to the project. Feel free to pick something from the roadmap
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
---
|
||||
title: "Mailing List"
|
||||
date: "2013-07-01"
|
||||
weight: 10
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: 'community'
|
||||
prev: "/extras/urls"
|
||||
next: "/community/press"
|
||||
parent: community
|
||||
next: /community/press
|
||||
prev: /extras/urls
|
||||
title: Mailing List
|
||||
weight: 10
|
||||
---
|
||||
|
||||
Hugo has two mailing lists:
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
+++
|
||||
title = "Press, Blogs and Media Coverage"
|
||||
date = 2014-03-24T20:00:00Z
|
||||
linktitle = "Press"
|
||||
weight = 20
|
||||
notoc = true
|
||||
prev = "/community/mailing-list"
|
||||
next = "/community/contributing"
|
||||
[menu.main]
|
||||
parent = "community"
|
||||
+++
|
||||
---
|
||||
date: 2014-03-24T20:00:00Z
|
||||
linktitle: Press
|
||||
menu:
|
||||
main:
|
||||
parent: community
|
||||
next: /community/contributing
|
||||
notoc: true
|
||||
prev: /community/mailing-list
|
||||
title: Press, Blogs and Media Coverage
|
||||
weight: 20
|
||||
---
|
||||
|
||||
Hugo has been featured in the following Blog Posts, Press and Media.
|
||||
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
+++
|
||||
title = "Archetypes"
|
||||
date = 2014-05-14T02:13:50Z
|
||||
weight = 50
|
||||
prev = "/content/types"
|
||||
next = "/content/ordering"
|
||||
|
||||
[menu]
|
||||
[menu.main]
|
||||
parent = "content"
|
||||
+++
|
||||
---
|
||||
date: 2014-05-14T02:13:50Z
|
||||
menu:
|
||||
main:
|
||||
parent: content
|
||||
next: /content/ordering
|
||||
prev: /content/types
|
||||
title: Archetypes
|
||||
weight: 50
|
||||
---
|
||||
|
||||
Hugo v0.11 introduced the concept of a content builder. Using the
|
||||
command: `hugo new [relative new content path]` you can start a content file
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
---
|
||||
title: "Example Content File"
|
||||
date: "2013-07-01"
|
||||
aliases: ["/doc/example/"]
|
||||
linktitle: "Example"
|
||||
aliases:
|
||||
- /doc/example/
|
||||
date: 2013-07-01
|
||||
linktitle: Example
|
||||
menu:
|
||||
main:
|
||||
parent: 'content'
|
||||
weight: 70
|
||||
main:
|
||||
parent: content
|
||||
next: /themes/overview
|
||||
notoc: true
|
||||
prev: '/content/ordering'
|
||||
next: '/themes/overview'
|
||||
prev: /content/ordering
|
||||
title: Example Content File
|
||||
weight: 70
|
||||
---
|
||||
|
||||
Somethings are better shown than explained. The following is a very basic example of a content file:
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
+++
|
||||
title = "Front Matter"
|
||||
date = "2013-07-01"
|
||||
aliases = ["/doc/front-matter/"]
|
||||
weight = 20
|
||||
prev = "/content/organization"
|
||||
next = "/content/sections"
|
||||
|
||||
[menu.main]
|
||||
parent = "content"
|
||||
|
||||
+++
|
||||
---
|
||||
aliases:
|
||||
- /doc/front-matter/
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: content
|
||||
next: /content/sections
|
||||
prev: /content/organization
|
||||
title: Front Matter
|
||||
weight: 20
|
||||
---
|
||||
|
||||
The front matter is one of the features that gives Hugo its strength. It enables
|
||||
you to include the meta data of the content right with it. Hugo supports a few
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
---
|
||||
title: "Ordering Content"
|
||||
date: "2014-03-06"
|
||||
linktitle: "Ordering"
|
||||
date: 2014-03-06
|
||||
linktitle: Ordering
|
||||
menu:
|
||||
main:
|
||||
parent: "content"
|
||||
parent: content
|
||||
next: /content/example
|
||||
prev: /content/archetypes
|
||||
title: Ordering Content
|
||||
weight: 60
|
||||
prev: '/content/archetypes'
|
||||
next: '/content/example'
|
||||
---
|
||||
|
||||
Hugo provides you with all the flexibility you need to organize how your content is ordered.
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
---
|
||||
title: "Content Organization"
|
||||
date: "2013-07-01"
|
||||
aliases: ["/doc/organization/"]
|
||||
linktitle: "Organization"
|
||||
weight: 10
|
||||
aliases:
|
||||
- /doc/organization/
|
||||
date: 2013-07-01
|
||||
linktitle: Organization
|
||||
menu:
|
||||
main:
|
||||
parent: 'content'
|
||||
prev: '/overview/source-directory'
|
||||
next: '/content/front-matter'
|
||||
parent: content
|
||||
next: /content/front-matter
|
||||
prev: /overview/source-directory
|
||||
title: Content Organization
|
||||
weight: 10
|
||||
---
|
||||
|
||||
Hugo uses markdown files with headers commonly called the front matter. Hugo
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
---
|
||||
title: "Sections"
|
||||
date: "2013-07-01"
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: 'content'
|
||||
weight: 30
|
||||
main:
|
||||
parent: content
|
||||
next: /content/types
|
||||
notoc: true
|
||||
prev: '/content/front-matter'
|
||||
next: '/content/types'
|
||||
prev: /content/front-matter
|
||||
title: Sections
|
||||
weight: 30
|
||||
---
|
||||
|
||||
Hugo thinks that you organize your content with a purpose. The same structure
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
---
|
||||
title: "Content Types"
|
||||
date: "2013-07-01"
|
||||
linktitle: "Types"
|
||||
date: 2013-07-01
|
||||
linktitle: Types
|
||||
menu:
|
||||
main:
|
||||
parent: 'content'
|
||||
main:
|
||||
parent: content
|
||||
next: /content/archetypes
|
||||
prev: /content/sections
|
||||
title: Content Types
|
||||
weight: 40
|
||||
prev: '/content/sections'
|
||||
next: '/content/archetypes'
|
||||
---
|
||||
|
||||
Hugo has full support for different types of content. A content type can have a
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
---
|
||||
title: "Aliases"
|
||||
date: "2013-07-09"
|
||||
aliases:
|
||||
- /doc/redirects/
|
||||
- /doc/alias/
|
||||
- /doc/aliases/
|
||||
weight: 10
|
||||
- /doc/redirects/
|
||||
- /doc/alias/
|
||||
- /doc/aliases/
|
||||
date: 2013-07-09
|
||||
menu:
|
||||
main:
|
||||
parent: 'extras'
|
||||
prev: "/taxonomies/ordering"
|
||||
next: "/extras/builders"
|
||||
parent: extras
|
||||
next: /extras/builders
|
||||
prev: /taxonomies/ordering
|
||||
title: Aliases
|
||||
weight: 10
|
||||
---
|
||||
|
||||
For people migrating existing published content to Hugo theres a good chance
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
---
|
||||
title: "Hugo Builders"
|
||||
linktitle: "Builders"
|
||||
date: "2014-05-26"
|
||||
weight: 12
|
||||
date: 2014-05-26
|
||||
linktitle: Builders
|
||||
menu:
|
||||
main:
|
||||
parent: 'extras'
|
||||
prev: "/extras/aliases"
|
||||
next: "/extras/comments"
|
||||
parent: extras
|
||||
next: /extras/comments
|
||||
prev: /extras/aliases
|
||||
title: Hugo Builders
|
||||
weight: 12
|
||||
---
|
||||
|
||||
Hugo provides the functionality to quickly get a site, theme or page
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
---
|
||||
title: "Comments in Hugo"
|
||||
linktitle: "Comments"
|
||||
date: "2014-05-26"
|
||||
weight: 14
|
||||
date: 2014-05-26
|
||||
linktitle: Comments
|
||||
menu:
|
||||
main:
|
||||
parent: 'extras'
|
||||
prev: "/extras/builders"
|
||||
next: "/extras/livereload"
|
||||
parent: extras
|
||||
next: /extras/livereload
|
||||
prev: /extras/builders
|
||||
title: Comments in Hugo
|
||||
weight: 14
|
||||
---
|
||||
|
||||
As Hugo is a static site generator, the content produced is static and
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
---
|
||||
title: "Syntax Highlighting"
|
||||
date: "2013-07-01"
|
||||
weight: 50
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: 'extras'
|
||||
prev: "/extras/shortcodes"
|
||||
next: "/extras/toc"
|
||||
parent: extras
|
||||
next: /extras/toc
|
||||
prev: /extras/shortcodes
|
||||
title: Syntax Highlighting
|
||||
weight: 50
|
||||
---
|
||||
|
||||
Hugo provides the ability for you to highlight source code in two different
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
---
|
||||
title: "Live Reload"
|
||||
date: "2014-05-26"
|
||||
weight: 15
|
||||
date: 2014-05-26
|
||||
menu:
|
||||
main:
|
||||
parent: 'extras'
|
||||
prev: "/extras/comments"
|
||||
next: "/extras/menus"
|
||||
parent: extras
|
||||
next: /extras/menus
|
||||
prev: /extras/comments
|
||||
title: Live Reload
|
||||
weight: 15
|
||||
---
|
||||
|
||||
Hugo may not be the first static site generator to utilize live reload
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
+++
|
||||
title = "Menus"
|
||||
weight = 20
|
||||
prev = "/extras/livereload"
|
||||
next = "/extras/permalinks"
|
||||
date = 2014-05-14T02:36:37Z
|
||||
[menu]
|
||||
[menu.main]
|
||||
parent = "extras"
|
||||
+++
|
||||
---
|
||||
date: 2014-05-14T02:36:37Z
|
||||
menu:
|
||||
main:
|
||||
parent: extras
|
||||
next: /extras/permalinks
|
||||
prev: /extras/livereload
|
||||
title: Menus
|
||||
weight: 20
|
||||
---
|
||||
|
||||
Hugo has a simple yet powerful menu system that permits content to be
|
||||
placed in menus with a good degree of control without a lot of work.
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
---
|
||||
title: "Permalinks"
|
||||
date: "2013-11-18"
|
||||
aliases:
|
||||
- "/doc/permalinks/"
|
||||
weight: 30
|
||||
notoc: true
|
||||
- /doc/permalinks/
|
||||
date: 2013-11-18
|
||||
menu:
|
||||
main:
|
||||
parent: 'extras'
|
||||
prev: "/extras/menus"
|
||||
next: "/extras/shortcodes"
|
||||
parent: extras
|
||||
next: /extras/shortcodes
|
||||
notoc: true
|
||||
prev: /extras/menus
|
||||
title: Permalinks
|
||||
weight: 30
|
||||
---
|
||||
|
||||
By default, content is laid out into the target `publishdir` (public)
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
---
|
||||
title: "Shortcodes"
|
||||
date: "2013-07-01"
|
||||
aliases: ["/doc/shortcodes/"]
|
||||
weight: 40
|
||||
aliases:
|
||||
- /doc/shortcodes/
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: 'extras'
|
||||
prev: "/extras/permalinks"
|
||||
next: "/extras/highlighting"
|
||||
parent: extras
|
||||
next: /extras/highlighting
|
||||
prev: /extras/permalinks
|
||||
title: Shortcodes
|
||||
weight: 40
|
||||
---
|
||||
|
||||
Because Hugo uses markdown for its simple content format, however there's a lot
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
---
|
||||
title: "Table of Contents"
|
||||
date: "2013-07-09"
|
||||
weight: 60
|
||||
date: 2013-07-09
|
||||
menu:
|
||||
main:
|
||||
parent: 'extras'
|
||||
prev: "/extras/highlighting"
|
||||
next: "/extras/urls"
|
||||
parent: extras
|
||||
next: /extras/urls
|
||||
prev: /extras/highlighting
|
||||
title: Table of Contents
|
||||
weight: 60
|
||||
---
|
||||
|
||||
Hugo will automatically parse the markdown for your content and create
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
---
|
||||
title: "URLs"
|
||||
date: "2014-01-03"
|
||||
aliases:
|
||||
- "/doc/urls/"
|
||||
weight: 70
|
||||
notoc: true
|
||||
- /doc/urls/
|
||||
date: 2014-01-03
|
||||
menu:
|
||||
main:
|
||||
parent: 'extras'
|
||||
prev: "/extras/toc"
|
||||
next: "/community/mailing-list"
|
||||
parent: extras
|
||||
next: /community/mailing-list
|
||||
notoc: true
|
||||
prev: /extras/toc
|
||||
title: URLs
|
||||
weight: 70
|
||||
---
|
||||
|
||||
## Pretty Urls
|
||||
|
|
|
@ -1,11 +1,14 @@
|
|||
---
|
||||
title: "License"
|
||||
date: "2013-07-01"
|
||||
aliases: ["/doc/license/", "/license/", "/meta/license/"]
|
||||
weight: 50
|
||||
aliases:
|
||||
- /doc/license/
|
||||
- /license/
|
||||
- /meta/license/
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: 'about'
|
||||
parent: about
|
||||
title: License
|
||||
weight: 50
|
||||
---
|
||||
|
||||
Hugo is released under the Simple Public License.
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
---
|
||||
title: "Release Notes"
|
||||
date: "2013-07-01"
|
||||
aliases: ["/doc/release-notes/", "/meta/release-notes/"]
|
||||
weight: 10
|
||||
aliases:
|
||||
- /doc/release-notes/
|
||||
- /meta/release-notes/
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: 'about'
|
||||
parent: about
|
||||
title: Release Notes
|
||||
weight: 10
|
||||
---
|
||||
|
||||
## **0.11.0** May 28, 2014
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
---
|
||||
title: "Hugo Roadmap"
|
||||
date: "2013-07-01"
|
||||
aliases: ["/doc/roadmap/","/meta/roadmap/"]
|
||||
weight: 20
|
||||
notoc: true
|
||||
aliases:
|
||||
- /doc/roadmap/
|
||||
- /meta/roadmap/
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: 'about'
|
||||
parent: about
|
||||
notoc: true
|
||||
title: Hugo Roadmap
|
||||
weight: 20
|
||||
---
|
||||
|
||||
In no particular order, here is what we are working on:
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
---
|
||||
title: "Configuring Hugo"
|
||||
date: "2013-07-01"
|
||||
aliases: ["/doc/configuration/"]
|
||||
linktitle: "Configuration"
|
||||
weight: 40
|
||||
notoc: true
|
||||
aliases:
|
||||
- /doc/configuration/
|
||||
date: 2013-07-01
|
||||
linktitle: Configuration
|
||||
menu:
|
||||
main:
|
||||
parent: 'getting started'
|
||||
prev: '/overview/usage'
|
||||
next: '/overview/source-directory'
|
||||
parent: getting started
|
||||
next: /overview/source-directory
|
||||
notoc: true
|
||||
prev: /overview/usage
|
||||
title: Configuring Hugo
|
||||
weight: 40
|
||||
---
|
||||
|
||||
The directory structure and templates provide the majority of the
|
||||
|
|
|
@ -1,15 +1,14 @@
|
|||
---
|
||||
title: "Installing Hugo"
|
||||
date: "2013-07-01"
|
||||
aliases: ["/doc/installing/"]
|
||||
weight: 20
|
||||
aliases:
|
||||
- /doc/installing/
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: 'getting started'
|
||||
|
||||
prev: '/overview/quickstart'
|
||||
next: '/overview/usage'
|
||||
|
||||
parent: getting started
|
||||
next: /overview/usage
|
||||
prev: /overview/quickstart
|
||||
title: Installing Hugo
|
||||
weight: 20
|
||||
---
|
||||
|
||||
Hugo is written in Go with support for Windows, Linux, FreeBSD and OSX.
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
---
|
||||
title: "Introduction to Hugo"
|
||||
date: "2013-07-01"
|
||||
linktitle: "Introduction"
|
||||
weight: 5
|
||||
date: 2013-07-01
|
||||
linktitle: Introduction
|
||||
menu:
|
||||
main:
|
||||
parent: 'getting started'
|
||||
next: '/overview/quickstart'
|
||||
parent: getting started
|
||||
next: /overview/quickstart
|
||||
title: Introduction to Hugo
|
||||
weight: 5
|
||||
---
|
||||
|
||||
## What is Hugo?
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
---
|
||||
title: "Hugo Quickstart Guide"
|
||||
date: "2013-07-01"
|
||||
linktitle: "Quickstart"
|
||||
weight: 10
|
||||
date: 2013-07-01
|
||||
linktitle: Quickstart
|
||||
menu:
|
||||
main:
|
||||
parent: 'getting started'
|
||||
prev: '/overview/introduction'
|
||||
next: '/overview/installing'
|
||||
parent: getting started
|
||||
next: /overview/installing
|
||||
prev: /overview/introduction
|
||||
title: Hugo Quickstart Guide
|
||||
weight: 10
|
||||
---
|
||||
|
||||
_This quickstart depends on features introduced in hugo v0.11. If you
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
---
|
||||
title: "Source Organization"
|
||||
date: "2013-07-01"
|
||||
aliases: ["/doc/source-directory/"]
|
||||
weight: 50
|
||||
notoc: true
|
||||
aliases:
|
||||
- /doc/source-directory/
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: 'getting started'
|
||||
prev: '/overview/configuration'
|
||||
next: '/content/organization'
|
||||
parent: getting started
|
||||
next: /content/organization
|
||||
notoc: true
|
||||
prev: /overview/configuration
|
||||
title: Source Organization
|
||||
weight: 50
|
||||
---
|
||||
|
||||
Hugo takes a single directory and uses it as the input for creating a complete
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
---
|
||||
title: "Using Hugo"
|
||||
date: "2013-07-01"
|
||||
aliases: ["/doc/usage/"]
|
||||
weight: 30
|
||||
notoc: true
|
||||
aliases:
|
||||
- /doc/usage/
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: 'getting started'
|
||||
prev: '/overview/installing'
|
||||
next: '/overview/configuration'
|
||||
parent: getting started
|
||||
next: /overview/configuration
|
||||
notoc: true
|
||||
prev: /overview/installing
|
||||
title: Using Hugo
|
||||
weight: 30
|
||||
---
|
||||
|
||||
Make sure either hugo is in your path or provide a path to it.
|
||||
|
|
|
@ -1,11 +1,15 @@
|
|||
+++
|
||||
title = "Ant Zucaro"
|
||||
date = 2014-02-03T20:00:00Z
|
||||
description = "Ant Zucaro's Blog"
|
||||
license = "GPL"
|
||||
licenseLink = ""
|
||||
sourceLink = "http://github.com/antzucaro/az.com"
|
||||
sitelink = "http://antzucaro.com"
|
||||
thumbnail = "/static/img/antzucaro-tn.jpg"
|
||||
tags = ["personal", "blog", "foundation"]
|
||||
+++
|
||||
---
|
||||
date: 2014-02-03T20:00:00Z
|
||||
description: Ant Zucaro's Blog
|
||||
license: GPL
|
||||
licenseLink: ""
|
||||
sitelink: http://antzucaro.com
|
||||
sourceLink: http://github.com/antzucaro/az.com
|
||||
tags:
|
||||
- personal
|
||||
- blog
|
||||
- foundation
|
||||
thumbnail: /static/img/antzucaro-tn.jpg
|
||||
title: Ant Zucaro
|
||||
---
|
||||
|
||||
|
|
|
@ -1,11 +1,14 @@
|
|||
+++
|
||||
title = "Andrew S Codispoti"
|
||||
date = 2014-01-22T07:32:00Z
|
||||
description = ""
|
||||
license = "CC-BY-SA"
|
||||
licenseLink = ""
|
||||
sourceLink = "https://gitlab.com/acodispo/andrewcodispoti-com"
|
||||
sitelink = "http://andrewcodispoti.com"
|
||||
thumbnail = "/static/img/asc-tn.jpg"
|
||||
tags = [ "personal", "bootstrap" ]
|
||||
+++
|
||||
---
|
||||
date: 2014-01-22T07:32:00Z
|
||||
description: ""
|
||||
license: CC-BY-SA
|
||||
licenseLink: ""
|
||||
sitelink: http://andrewcodispoti.com
|
||||
sourceLink: https://gitlab.com/acodispo/andrewcodispoti-com
|
||||
tags:
|
||||
- personal
|
||||
- bootstrap
|
||||
thumbnail: /static/img/asc-tn.jpg
|
||||
title: Andrew S Codispoti
|
||||
---
|
||||
|
||||
|
|
|
@ -1,11 +1,14 @@
|
|||
+++
|
||||
title = "Chimera Art Space"
|
||||
date = 2013-10-02T07:32:00Z
|
||||
description = ""
|
||||
license = "CC-SA"
|
||||
licenseLink = ""
|
||||
sourceLink = "https://github.com/chimera/chimeraarts.org"
|
||||
sitelink = "http://chimeraarts.org"
|
||||
thumbnail = "/static/img/chimera-tn.jpg"
|
||||
tags = ["company", "bootstrap" ]
|
||||
+++
|
||||
---
|
||||
date: 2013-10-02T07:32:00Z
|
||||
description: ""
|
||||
license: CC-SA
|
||||
licenseLink: ""
|
||||
sitelink: http://chimeraarts.org
|
||||
sourceLink: https://github.com/chimera/chimeraarts.org
|
||||
tags:
|
||||
- company
|
||||
- bootstrap
|
||||
thumbnail: /static/img/chimera-tn.jpg
|
||||
title: Chimera Art Space
|
||||
---
|
||||
|
||||
|
|
|
@ -1,11 +1,14 @@
|
|||
+++
|
||||
title = "CloudShark"
|
||||
date = 2014-03-27T09:45:00Z
|
||||
description = "CloudShark Appliance homepage and documentation"
|
||||
license = ""
|
||||
licenseLink = ""
|
||||
sitelink = "https://appliance.cloudshark.org"
|
||||
thumbnail = "/static/img/cloudshark-tn.jpg"
|
||||
tags = ["company", "documentation", "foundation"]
|
||||
+++
|
||||
---
|
||||
date: 2014-03-27T09:45:00Z
|
||||
description: CloudShark Appliance homepage and documentation
|
||||
license: ""
|
||||
licenseLink: ""
|
||||
sitelink: https://appliance.cloudshark.org
|
||||
tags:
|
||||
- company
|
||||
- documentation
|
||||
- foundation
|
||||
thumbnail: /static/img/cloudshark-tn.jpg
|
||||
title: CloudShark
|
||||
---
|
||||
|
||||
|
|
|
@ -1,11 +1,14 @@
|
|||
+++
|
||||
title = "Hey, it's Alex"
|
||||
date = 2014-03-09T06:00:00Z
|
||||
description = ""
|
||||
license = "MIT"
|
||||
licenseLink = ""
|
||||
sourceLink = "https://github.com/alexandre-normand/alexandre-normand"
|
||||
sitelink = "http://heyitsalex.net"
|
||||
thumbnail = "/static/img/heyitsalex-tn.jpg"
|
||||
tags = [ "personal", "blog" ]
|
||||
+++
|
||||
---
|
||||
date: 2014-03-09T06:00:00Z
|
||||
description: ""
|
||||
license: MIT
|
||||
licenseLink: ""
|
||||
sitelink: http://heyitsalex.net
|
||||
sourceLink: https://github.com/alexandre-normand/alexandre-normand
|
||||
tags:
|
||||
- personal
|
||||
- blog
|
||||
thumbnail: /static/img/heyitsalex-tn.jpg
|
||||
title: Hey, it's Alex
|
||||
---
|
||||
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
+++
|
||||
title = "Hugo"
|
||||
date = 2013-07-01T07:32:00Z
|
||||
description = "This site"
|
||||
license = "Simpl"
|
||||
licenseLink = ""
|
||||
sourceLink = "http://github.com/spf13/hugo/docs"
|
||||
sitelink = "http://hugo.spf13.com"
|
||||
thumbnail = "/static/img/hugo-tn.jpg"
|
||||
tags = ["documentation", "bootstrap"]
|
||||
+++
|
||||
---
|
||||
date: 2013-07-01T07:32:00Z
|
||||
description: This site
|
||||
license: Simpl
|
||||
licenseLink: ""
|
||||
sitelink: http://hugo.spf13.com
|
||||
sourceLink: http://github.com/spf13/hugo/docs
|
||||
tags:
|
||||
- documentation
|
||||
- bootstrap
|
||||
thumbnail: /static/img/hugo-tn.jpg
|
||||
title: Hugo
|
||||
---
|
||||
|
||||
|
|
|
@ -1,11 +1,14 @@
|
|||
+++
|
||||
title = "ifup"
|
||||
date = 2013-11-02T07:32:00Z
|
||||
description = ""
|
||||
license = "MIT"
|
||||
licenseLink = ""
|
||||
sourceLink = "http://www.ifup.org"
|
||||
sitelink = "http://ifup.org"
|
||||
thumbnail = "/static/img/ifup-tn.jpg"
|
||||
tags = [ "personal", "blog" ]
|
||||
+++
|
||||
---
|
||||
date: 2013-11-02T07:32:00Z
|
||||
description: ""
|
||||
license: MIT
|
||||
licenseLink: ""
|
||||
sitelink: http://ifup.org
|
||||
sourceLink: http://www.ifup.org
|
||||
tags:
|
||||
- personal
|
||||
- blog
|
||||
thumbnail: /static/img/ifup-tn.jpg
|
||||
title: ifup
|
||||
---
|
||||
|
||||
|
|
|
@ -1,11 +1,15 @@
|
|||
+++
|
||||
title = "Kieran Healy"
|
||||
date = 2014-02-27T20:35:00Z
|
||||
description = "Kieran Healy's Website"
|
||||
license = ""
|
||||
licenseLink = ""
|
||||
sourceLink = "http://github.com/kjhealy/kieranhealy.hugo"
|
||||
sitelink = "http://kieranhealy.org"
|
||||
thumbnail = "/static/img/kjhealy-tn.jpg"
|
||||
tags = ["personal", "blog", "academic"]
|
||||
+++
|
||||
---
|
||||
date: 2014-02-27T20:35:00Z
|
||||
description: Kieran Healy's Website
|
||||
license: ""
|
||||
licenseLink: ""
|
||||
sitelink: http://kieranhealy.org
|
||||
sourceLink: http://github.com/kjhealy/kieranhealy.hugo
|
||||
tags:
|
||||
- personal
|
||||
- blog
|
||||
- academic
|
||||
thumbnail: /static/img/kjhealy-tn.jpg
|
||||
title: Kieran Healy
|
||||
---
|
||||
|
||||
|
|
|
@ -1,11 +1,14 @@
|
|||
+++
|
||||
title = "spf13.com"
|
||||
date = 2013-07-01T07:32:00Z
|
||||
description = "The first Hugo powered website."
|
||||
license = "MIT"
|
||||
licenseLink = ""
|
||||
sourceLink = "http://github.com/spf13/spf13.com"
|
||||
sitelink = "http://spf13.com"
|
||||
thumbnail = "/static/img/spf13-tn.jpg"
|
||||
tags = ["personal", "blog"]
|
||||
+++
|
||||
---
|
||||
date: 2013-07-01T07:32:00Z
|
||||
description: The first Hugo powered website.
|
||||
license: MIT
|
||||
licenseLink: ""
|
||||
sitelink: http://spf13.com
|
||||
sourceLink: http://github.com/spf13/spf13.com
|
||||
tags:
|
||||
- personal
|
||||
- blog
|
||||
thumbnail: /static/img/spf13-tn.jpg
|
||||
title: spf13.com
|
||||
---
|
||||
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
+++
|
||||
title = "Tech Made Plain"
|
||||
date = 2014-05-22T19:54:00Z
|
||||
description = "Tech Coaching site"
|
||||
license = ""
|
||||
licenseLink = ""
|
||||
sitelink = "http://techmadeplain.com"
|
||||
thumbnail = "/static/img/techmadeplain-tn.jpg"
|
||||
tags = ["personal", "blog"]
|
||||
+++
|
||||
---
|
||||
date: 2014-05-22T19:54:00Z
|
||||
description: Tech Coaching site
|
||||
license: ""
|
||||
licenseLink: ""
|
||||
sitelink: http://techmadeplain.com
|
||||
tags:
|
||||
- personal
|
||||
- blog
|
||||
thumbnail: /static/img/techmadeplain-tn.jpg
|
||||
title: Tech Made Plain
|
||||
---
|
||||
|
||||
|
|
|
@ -1,12 +1,15 @@
|
|||
+++
|
||||
title = "YSlow Rules"
|
||||
date = 2014-04-07T10:45:00Z
|
||||
description = "Community project of YSlow rules translations"
|
||||
sourceLink = "https://github.com/checkmyws/yslow-rules"
|
||||
license = "MIT License"
|
||||
licenseLink = "https://raw.github.com/checkmyws/yslow-rules/master/LICENSE"
|
||||
sitelink = "http://checkmyws.github.io/yslow-rules/"
|
||||
thumbnail = "/static/img/yslow-rules.jpg"
|
||||
tags = ["community", "documentation", "translation"]
|
||||
+++
|
||||
---
|
||||
date: 2014-04-07T10:45:00Z
|
||||
description: Community project of YSlow rules translations
|
||||
license: MIT License
|
||||
licenseLink: https://raw.github.com/checkmyws/yslow-rules/master/LICENSE
|
||||
sitelink: http://checkmyws.github.io/yslow-rules/
|
||||
sourceLink: https://github.com/checkmyws/yslow-rules
|
||||
tags:
|
||||
- community
|
||||
- documentation
|
||||
- translation
|
||||
thumbnail: /static/img/yslow-rules.jpg
|
||||
title: YSlow Rules
|
||||
---
|
||||
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
---
|
||||
title: "Displaying Taxonomies"
|
||||
date: "2013-07-01"
|
||||
linktitle: "Displaying"
|
||||
aliases: ["/indexes/displaying/"]
|
||||
weight: 20
|
||||
aliases:
|
||||
- /indexes/displaying/
|
||||
date: 2013-07-01
|
||||
linktitle: Displaying
|
||||
menu:
|
||||
main:
|
||||
parent: 'taxonomy'
|
||||
prev: "/taxonomies/usage"
|
||||
next: "/taxonomies/templates"
|
||||
parent: taxonomy
|
||||
next: /taxonomies/templates
|
||||
prev: /taxonomies/usage
|
||||
title: Displaying Taxonomies
|
||||
weight: 20
|
||||
---
|
||||
|
||||
There are four common ways you can display the data in your
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
---
|
||||
title: "Ordering Taxonomies"
|
||||
date: "2013-07-01"
|
||||
linktitle: "Ordering"
|
||||
aliases: ["/indexes/ordering/"]
|
||||
weight: 60
|
||||
aliases:
|
||||
- /indexes/ordering/
|
||||
date: 2013-07-01
|
||||
linktitle: Ordering
|
||||
menu:
|
||||
main:
|
||||
identifier: "Ordering Taxonomies"
|
||||
parent: 'taxonomy'
|
||||
prev: "/taxonomies/templates"
|
||||
next: "/extras/aliases"
|
||||
identifier: Ordering Taxonomies
|
||||
parent: taxonomy
|
||||
next: /extras/aliases
|
||||
prev: /taxonomies/templates
|
||||
title: Ordering Taxonomies
|
||||
weight: 60
|
||||
---
|
||||
|
||||
Hugo provides the ability to both:
|
||||
|
|
|
@ -1,15 +1,18 @@
|
|||
---
|
||||
title: "Taxonomy Overview"
|
||||
linktitle: "Overview"
|
||||
date: "2013-07-01"
|
||||
aliases: ["/indexes/overview/","/doc/indexes/", "/extras/indexes"]
|
||||
weight: 10
|
||||
aliases:
|
||||
- /indexes/overview/
|
||||
- /doc/indexes/
|
||||
- /extras/indexes
|
||||
date: 2013-07-01
|
||||
linktitle: Overview
|
||||
menu:
|
||||
main:
|
||||
parent: 'taxonomy'
|
||||
identifier: 'taxonomy overview'
|
||||
prev: "/templates/404"
|
||||
next: "/taxonomies/usage"
|
||||
identifier: taxonomy overview
|
||||
parent: taxonomy
|
||||
next: /taxonomies/usage
|
||||
prev: /templates/404
|
||||
title: Taxonomy Overview
|
||||
weight: 10
|
||||
---
|
||||
|
||||
Hugo includes support for user defined groupings of content called
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
---
|
||||
title: "Taxonomy Templates"
|
||||
date: "2013-07-01"
|
||||
linktitle: "Templates"
|
||||
aliases: ["/indexes/templates/"]
|
||||
weight: 30
|
||||
aliases:
|
||||
- /indexes/templates/
|
||||
date: 2013-07-01
|
||||
linktitle: Templates
|
||||
menu:
|
||||
main:
|
||||
parent: 'taxonomy'
|
||||
prev: "/templates/displaying"
|
||||
next: "/taxonomies/ordering"
|
||||
parent: taxonomy
|
||||
next: /taxonomies/ordering
|
||||
prev: /templates/displaying
|
||||
title: Taxonomy Templates
|
||||
weight: 30
|
||||
---
|
||||
|
||||
There are two different templates that the use of taxonomies will require you to provide.
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
---
|
||||
title: "Using Taxonomies"
|
||||
linktitle: "Usage"
|
||||
date: "2014-05-26"
|
||||
weight: 15
|
||||
date: 2014-05-26
|
||||
linktitle: Usage
|
||||
menu:
|
||||
main:
|
||||
parent: 'taxonomy'
|
||||
prev: "/taxonomies/overview"
|
||||
next: "/taxonomies/displaying"
|
||||
parent: taxonomy
|
||||
next: /taxonomies/displaying
|
||||
prev: /taxonomies/overview
|
||||
title: Using Taxonomies
|
||||
weight: 15
|
||||
---
|
||||
|
||||
## Defining taxonomies for a site
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
---
|
||||
title: "404.html Templates"
|
||||
aliases:
|
||||
- /layout/404/
|
||||
date: 2013-08-21
|
||||
linktitle: "404"
|
||||
date: "2013-08-21"
|
||||
notoc: true
|
||||
weight: 100
|
||||
menu:
|
||||
main:
|
||||
parent: 'layout'
|
||||
aliases: ["/layout/404/"]
|
||||
prev: "/templates/sitemap"
|
||||
next: "/taxonomies/overview"
|
||||
parent: layout
|
||||
next: /taxonomies/overview
|
||||
notoc: true
|
||||
prev: /templates/sitemap
|
||||
title: 404.html Templates
|
||||
weight: 100
|
||||
---
|
||||
|
||||
When using Hugo with [github pages](http://pages.github.com/) you can provide
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
---
|
||||
title: "Single Content Template"
|
||||
linktitle: "Single"
|
||||
date: "2013-07-01"
|
||||
weight: 30
|
||||
aliases:
|
||||
- /layout/functions/
|
||||
date: 2013-07-01
|
||||
linktitle: Single
|
||||
menu:
|
||||
main:
|
||||
parent: 'layout'
|
||||
aliases: ["/layout/functions/"]
|
||||
prev: "/templates/variables"
|
||||
next: "/templates/list"
|
||||
parent: layout
|
||||
next: /templates/list
|
||||
prev: /templates/variables
|
||||
title: Single Content Template
|
||||
weight: 30
|
||||
---
|
||||
|
||||
The primary view of content in hugo is the single view. Hugo for every
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
---
|
||||
title: "Hugo Template Functions"
|
||||
date: "2013-07-01"
|
||||
linktitle: "Functions"
|
||||
aliases: ["/layout/functions/"]
|
||||
weight: 20
|
||||
aliases:
|
||||
- /layout/functions/
|
||||
date: 2013-07-01
|
||||
linktitle: Functions
|
||||
menu:
|
||||
main:
|
||||
parent: 'layout'
|
||||
prev: "/templates/go-templates"
|
||||
next: "/templates/variables"
|
||||
parent: layout
|
||||
next: /templates/variables
|
||||
prev: /templates/go-templates
|
||||
title: Hugo Template Functions
|
||||
weight: 20
|
||||
---
|
||||
|
||||
Hugo uses the excellent go html/template library for its template engine.
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
---
|
||||
title: "Go Template Primer"
|
||||
date: "2013-07-01"
|
||||
aliases: ["/layout/go-templates/"]
|
||||
weight: 15
|
||||
aliases:
|
||||
- /layout/go-templates/
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: 'layout'
|
||||
prev: "/templates/overview"
|
||||
next: "/templates/functions"
|
||||
parent: layout
|
||||
next: /templates/functions
|
||||
prev: /templates/overview
|
||||
title: Go Template Primer
|
||||
weight: 15
|
||||
---
|
||||
|
||||
Hugo uses the excellent [go][] [html/template][gohtmltemplate] library for
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
---
|
||||
title: "Homepage"
|
||||
date: "2013-07-01"
|
||||
weight: 50
|
||||
notoc: true
|
||||
aliases:
|
||||
- /layout/homepage/
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: 'layout'
|
||||
aliases: ["/layout/homepage/"]
|
||||
prev: "/templates/list"
|
||||
next: "/templates/terms"
|
||||
parent: layout
|
||||
next: /templates/terms
|
||||
notoc: true
|
||||
prev: /templates/list
|
||||
title: Homepage
|
||||
weight: 50
|
||||
---
|
||||
|
||||
The home page of a website is often formatted differently than the other
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
---
|
||||
title: "Content List Template"
|
||||
linktitle: "List"
|
||||
date: "2013-07-01"
|
||||
weight: 40
|
||||
aliases:
|
||||
- /layout/indexes/
|
||||
date: 2013-07-01
|
||||
linktitle: List
|
||||
menu:
|
||||
main:
|
||||
parent: 'layout'
|
||||
aliases: ["/layout/indexes/"]
|
||||
prev: "/templates/content"
|
||||
next: "/templates/homepage"
|
||||
parent: layout
|
||||
next: /templates/homepage
|
||||
prev: /templates/content
|
||||
title: Content List Template
|
||||
weight: 40
|
||||
---
|
||||
|
||||
A list template is any template that will be used to render multiple pieces of
|
||||
|
|
|
@ -1,14 +1,16 @@
|
|||
---
|
||||
title: "Hugo Templates"
|
||||
date: "2013-07-01"
|
||||
aliases: ["/doc/templates/", "/layout/templates/"]
|
||||
linktitle: "Overview"
|
||||
weight: 10
|
||||
aliases:
|
||||
- /doc/templates/
|
||||
- /layout/templates/
|
||||
date: 2013-07-01
|
||||
linktitle: Overview
|
||||
menu:
|
||||
main:
|
||||
parent: 'layout'
|
||||
prev: "/themes/creation"
|
||||
next: "/templates/go-templates"
|
||||
parent: layout
|
||||
next: /templates/go-templates
|
||||
prev: /themes/creation
|
||||
title: Hugo Templates
|
||||
weight: 10
|
||||
---
|
||||
|
||||
Hugo uses the excellent go html/template library for its template engine.
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
---
|
||||
title: "Partial Templates"
|
||||
date: "2013-07-01"
|
||||
weight: 80
|
||||
aliases:
|
||||
- /layout/chrome/
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: 'layout'
|
||||
aliases: ["/layout/chrome/"]
|
||||
prev: "/templates/views"
|
||||
next: "/templates/rss"
|
||||
parent: layout
|
||||
next: /templates/rss
|
||||
prev: /templates/views
|
||||
title: Partial Templates
|
||||
weight: 80
|
||||
---
|
||||
|
||||
It's not a requirement to have this, but in practice it's very
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
---
|
||||
title: "RSS (feed) Templates"
|
||||
linktitle: "RSS"
|
||||
date: "2013-07-01"
|
||||
weight: 90
|
||||
notoc: "one"
|
||||
aliases:
|
||||
- /layout/rss/
|
||||
date: 2013-07-01
|
||||
linktitle: RSS
|
||||
menu:
|
||||
main:
|
||||
parent: 'layout'
|
||||
aliases: ["/layout/rss/"]
|
||||
prev: "/templates/partials"
|
||||
next: "/templates/sitemap"
|
||||
parent: layout
|
||||
next: /templates/sitemap
|
||||
notoc: one
|
||||
prev: /templates/partials
|
||||
title: RSS (feed) Templates
|
||||
weight: 90
|
||||
---
|
||||
|
||||
Like all other templates, you can use a single RSS template to generate
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
---
|
||||
title: "Sitemap Template"
|
||||
linktitle: "Sitemap"
|
||||
date: "2014-05-07"
|
||||
weight: 95
|
||||
notoc: true
|
||||
aliases:
|
||||
- /layout/sitemap/
|
||||
date: 2014-05-07
|
||||
linktitle: Sitemap
|
||||
menu:
|
||||
main:
|
||||
parent: 'layout'
|
||||
aliases: ["/layout/sitemap/"]
|
||||
prev: "/templates/rss"
|
||||
next: "/templates/404"
|
||||
parent: layout
|
||||
next: /templates/404
|
||||
notoc: true
|
||||
prev: /templates/rss
|
||||
title: Sitemap Template
|
||||
weight: 95
|
||||
---
|
||||
|
||||
A single Sitemap template is used to generate the `sitemap.xml` file.
|
||||
|
|
|
@ -1,14 +1,17 @@
|
|||
---
|
||||
title: "Taxonomy Terms Template"
|
||||
linktitle: "Taxonomy Terms"
|
||||
date: "2014-05-21"
|
||||
weight: 60
|
||||
aliases: ["/indexes/lists/","/doc/indexes/", "/extras/indexes"]
|
||||
aliases:
|
||||
- /indexes/lists/
|
||||
- /doc/indexes/
|
||||
- /extras/indexes
|
||||
date: 2014-05-21
|
||||
linktitle: Taxonomy Terms
|
||||
menu:
|
||||
main:
|
||||
parent: 'layout'
|
||||
prev: "/templates/homepage"
|
||||
next: "/templates/views"
|
||||
parent: layout
|
||||
next: /templates/views
|
||||
prev: /templates/homepage
|
||||
title: Taxonomy Terms Template
|
||||
weight: 60
|
||||
---
|
||||
|
||||
A unique template is needed to create a list of the terms for a given
|
||||
|
|
|
@ -1,14 +1,16 @@
|
|||
---
|
||||
title: "Template Variables"
|
||||
linktitle: "Variables"
|
||||
date: "2013-07-01"
|
||||
aliases: ["/doc/variables/","/layout/variables/"]
|
||||
weight: 20
|
||||
aliases:
|
||||
- /doc/variables/
|
||||
- /layout/variables/
|
||||
date: 2013-07-01
|
||||
linktitle: Variables
|
||||
menu:
|
||||
main:
|
||||
parent: 'layout'
|
||||
prev: "/templates/functions"
|
||||
next: "/templates/content"
|
||||
parent: layout
|
||||
next: /templates/content
|
||||
prev: /templates/functions
|
||||
title: Template Variables
|
||||
weight: 20
|
||||
---
|
||||
|
||||
Hugo makes a set of values available to the templates. Go templates are context based. The following
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
---
|
||||
title: "Content Views"
|
||||
date: "2013-07-01"
|
||||
weight: 70
|
||||
aliases:
|
||||
- /templates/views/
|
||||
date: 2013-07-01
|
||||
menu:
|
||||
main:
|
||||
parent: 'layout'
|
||||
aliases: ["/templates/views/"]
|
||||
prev: "/templates/terms"
|
||||
next: "/templates/partials"
|
||||
parent: layout
|
||||
next: /templates/partials
|
||||
prev: /templates/terms
|
||||
title: Content Views
|
||||
weight: 70
|
||||
---
|
||||
|
||||
In addition to the [single content template](/templates/content/), Hugo can render alternative views of
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
+++
|
||||
title = "Creating a Theme"
|
||||
weight = 50
|
||||
date = 2014-05-12T10:09:17Z
|
||||
prev = "/themes/customizing"
|
||||
next = "/templates/overview"
|
||||
|
||||
[menu]
|
||||
[menu.main]
|
||||
parent = "themes"
|
||||
+++
|
||||
---
|
||||
date: 2014-05-12T10:09:17Z
|
||||
menu:
|
||||
main:
|
||||
parent: themes
|
||||
next: /templates/overview
|
||||
prev: /themes/customizing
|
||||
title: Creating a Theme
|
||||
weight: 50
|
||||
---
|
||||
|
||||
Hugo has the ability to create a new theme in your themes directory for you
|
||||
using the `hugo new` command.
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
+++
|
||||
title = "Customizing a Theme"
|
||||
weight = 40
|
||||
date = 2014-05-12T10:09:34Z
|
||||
prev = "/themes/usage"
|
||||
next = "/themes/creation"
|
||||
|
||||
[menu]
|
||||
[menu.main]
|
||||
parent = "themes"
|
||||
+++
|
||||
---
|
||||
date: 2014-05-12T10:09:34Z
|
||||
menu:
|
||||
main:
|
||||
parent: themes
|
||||
next: /themes/creation
|
||||
prev: /themes/usage
|
||||
title: Customizing a Theme
|
||||
weight: 40
|
||||
---
|
||||
|
||||
Hugo themes permit you to supplement or override any template or file
|
||||
from within your working directory.
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
+++
|
||||
title = "Installing Themes"
|
||||
weight = 20
|
||||
date = 2014-05-12T10:09:49Z
|
||||
prev = "/themes/overview"
|
||||
next = "/themes/usage"
|
||||
|
||||
[menu]
|
||||
[menu.main]
|
||||
parent = "themes"
|
||||
+++
|
||||
---
|
||||
date: 2014-05-12T10:09:49Z
|
||||
menu:
|
||||
main:
|
||||
parent: themes
|
||||
next: /themes/usage
|
||||
prev: /themes/overview
|
||||
title: Installing Themes
|
||||
weight: 20
|
||||
---
|
||||
|
||||
Hugo themes are located in a centralized github repository. [Hugo Themes
|
||||
Repo](http://github.com/spf13/hugoThemes) itself is really a meta
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
+++
|
||||
title = "Themes Overview"
|
||||
weight = 10
|
||||
date = 2014-05-12T10:03:52Z
|
||||
prev = "/content/example"
|
||||
next = "/themes/installing"
|
||||
|
||||
[menu]
|
||||
[menu.main]
|
||||
parent = "themes"
|
||||
+++
|
||||
---
|
||||
date: 2014-05-12T10:03:52Z
|
||||
menu:
|
||||
main:
|
||||
parent: themes
|
||||
next: /themes/installing
|
||||
prev: /content/example
|
||||
title: Themes Overview
|
||||
weight: 10
|
||||
---
|
||||
|
||||
Hugo provides a robust theming system which is simple, yet capable of producing
|
||||
even the most complicated websites.
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
+++
|
||||
title = "Using a Theme"
|
||||
weight = 30
|
||||
date = 2014-05-12T10:09:27Z
|
||||
prev = "/themes/installing"
|
||||
next = "/themes/customizing"
|
||||
|
||||
[menu]
|
||||
[menu.main]
|
||||
parent = "themes"
|
||||
+++
|
||||
---
|
||||
date: 2014-05-12T10:09:27Z
|
||||
menu:
|
||||
main:
|
||||
parent: themes
|
||||
next: /themes/customizing
|
||||
prev: /themes/installing
|
||||
title: Using a Theme
|
||||
weight: 30
|
||||
---
|
||||
|
||||
Please make certain you have installed the themes you want to use in the
|
||||
/themes directory.
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
---
|
||||
title: "Hosting on GitHub Pages"
|
||||
linktitle: "Hosting on GitHub"
|
||||
date: "2014-03-21"
|
||||
weight: 10
|
||||
author: "Spencer Lyon"
|
||||
author: Spencer Lyon
|
||||
date: 2014-03-21
|
||||
linktitle: Hosting on GitHub
|
||||
menu:
|
||||
main:
|
||||
parent: 'tutorials'
|
||||
prev: "/community/contributing"
|
||||
next: "/tutorials/mathjax"
|
||||
parent: tutorials
|
||||
next: /tutorials/mathjax
|
||||
prev: /community/contributing
|
||||
title: Hosting on GitHub Pages
|
||||
weight: 10
|
||||
---
|
||||
|
||||
## Intro
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
---
|
||||
title: "MathJax Support"
|
||||
date: "2014-03-20"
|
||||
weight: 10
|
||||
author: "Spencer Lyon"
|
||||
author: Spencer Lyon
|
||||
date: 2014-03-20
|
||||
menu:
|
||||
main:
|
||||
parent: 'tutorials'
|
||||
prev: "/tutorials/github_pages_blog"
|
||||
next: "/tutorials/migrate-from-jekyll"
|
||||
parent: tutorials
|
||||
next: /tutorials/migrate-from-jekyll
|
||||
prev: /tutorials/github_pages_blog
|
||||
title: MathJax Support
|
||||
weight: 10
|
||||
---
|
||||
|
||||
## What is MathJax?
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
---
|
||||
title: "Migrate to Hugo from Jekyll"
|
||||
linktitle: "Migrating from Jekyll"
|
||||
date: "2014-03-10"
|
||||
weight: 10
|
||||
date: 2014-03-10
|
||||
linktitle: Migrating from Jekyll
|
||||
menu:
|
||||
main:
|
||||
parent: 'tutorials'
|
||||
prev: "/tutorials/mathjax"
|
||||
parent: tutorials
|
||||
prev: /tutorials/mathjax
|
||||
title: Migrate to Hugo from Jekyll
|
||||
weight: 10
|
||||
---
|
||||
|
||||
## Move static content to `static`
|
||||
|
|
Loading…
Reference in a new issue