prev: /content/types
title: Archetypes
weight: 50
+toc: true
---
Hugo v0.11 introduced the concept of a content builder. Using the
prev: /content/organization
title: Front Matter
weight: 20
+toc: true
---
The **front matter** is one of the features that gives Hugo its strength. It enables
[YAML]: http://www.yaml.org/ "YAML Ain't Markup Language"
[JSON]: http://www.json.org/ "JavaScript Object Notation"
-### TOML Example
+## TOML Example
+++
title = "spf13-vim 3.0 release and new website"
Content of the file goes Here
-### YAML Example
+## YAML Example
---
title: "spf13-vim 3.0 release and new website"
Content of the file goes Here
-### JSON Example
+## JSON Example
{
"title": "spf13-vim 3.0 release and new website",
prev: /overview/source-directory
title: Content Organization
weight: 10
+toc: true
---
Hugo uses Markdown files with headers commonly called the *front matter*. Hugo
prev: /content/sections
title: Content Types
weight: 40
+toc: true
---
Hugo has full support for different types of content. A content type can have a
prev: /taxonomies/usage
title: Displaying Taxonomies
weight: 20
+toc: true
---
There are four common ways you can display the data in your
prev: /taxonomies/templates
title: Ordering Taxonomies
weight: 60
+toc: true
---
Hugo provides the ability to both:
## Ordering Taxonomies
Taxonomies can be ordered by either alphabetical key or by the number of content pieces assigned to that key.
-### Order Alphabetically Example:
+### Order Alphabetically Example
<ul>
{{ $data := .Data }}
{{ end }}
</ul>
-### Order by Popularity Example:
+### Order by Popularity Example
<ul>
{{ $data := .Data }}
prev: /templates/variables
title: Single Content Template
weight: 30
+toc: true
---
The primary view of content in Hugo is the single view. Hugo, for every
single.html
-## post/single.html
+### post/single.html
This content template is used for [spf13.com](http://spf13.com/).
It makes use of [partial templates](/templates/partials/)
{{ partial "footer.html" . }}
-## project/single.html
+### project/single.html
This content template is used for [spf13.com](http://spf13.com/).
It makes use of [partial templates](/templates/partials/)
prev: /templates/overview
title: Go Template Primer
weight: 15
+toc: true
---
Hugo uses the excellent [Go][] [html/template][gohtmltemplate] library for
prev: /templates/content
title: Content List Template
weight: 40
+toc: true
---
A list template is any template that will be used to render multiple pieces of
prev: /themes/creation
title: Hugo Templates
weight: 10
+toc: true
---
Hugo uses the excellent Go html/template library for its template engine.
prev: /templates/views
title: Partial Templates
weight: 80
+toc: true
---
In practice, it's very convenient to split out common template portions into a
prev: /templates/partials
title: RSS (feed) Templates
weight: 90
+toc: true
---
Like all other templates, you can use a single RSS template to generate all of your RSS feeds, or you can create a specific template for each individual feed.
prev: /templates/homepage
title: Taxonomy Terms Template
weight: 60
+toc: true
---
A unique template is needed to create a list of the terms for a given
prev: /templates/functions
title: Template Variables
weight: 20
+toc: true
---
Hugo makes a set of values available to the templates. Go templates are context based. The following
prev: /templates/terms
title: Content Views
weight: 70
+toc: true
---
In addition to the [single content template](/templates/content/), Hugo can render alternative views of
prev: /themes/usage
title: Customizing a Theme
weight: 40
+toc: true
---
_The following are key concepts for Hugo site customization. Hugo permits you to **supplement or override** any theme template or static file, with files in your working directory._
next: /tutorials/migrate-from-jekyll
prev: /tutorials/installing-on-windows
title: MathJax Support
+toc: true
weight: 10
---