2013-08-17 08:34:25 -04:00
|
|
|
|
---
|
2014-05-29 18:42:05 -04:00
|
|
|
|
aliases:
|
|
|
|
|
- /layout/functions/
|
|
|
|
|
date: 2013-07-01
|
2014-08-30 00:57:38 -04:00
|
|
|
|
linktitle: Single Content
|
2014-04-23 03:00:11 -04:00
|
|
|
|
menu:
|
|
|
|
|
main:
|
2014-05-29 18:42:05 -04:00
|
|
|
|
parent: layout
|
|
|
|
|
next: /templates/list
|
|
|
|
|
prev: /templates/variables
|
|
|
|
|
title: Single Content Template
|
|
|
|
|
weight: 30
|
2013-08-17 08:34:25 -04:00
|
|
|
|
---
|
|
|
|
|
|
2014-09-03 00:12:26 -04:00
|
|
|
|
The primary view of content in Hugo is the single view. Hugo, for every
|
|
|
|
|
Markdown file provided, will render it with a single template.
|
2014-05-27 18:32:57 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Which Template will be rendered?
|
|
|
|
|
Hugo uses a set of rules to figure out which template to use when
|
|
|
|
|
rendering a specific page.
|
|
|
|
|
|
2014-09-03 00:12:26 -04:00
|
|
|
|
Hugo will use the following prioritized list. If a file isn’t present,
|
|
|
|
|
then the next one in the list will be used. This enables you to craft
|
2014-05-27 18:32:57 -04:00
|
|
|
|
specific layouts when you want to without creating more templates
|
2014-09-03 00:12:26 -04:00
|
|
|
|
than necessary. For most sites only the \_default file at the end of
|
2014-05-27 18:32:57 -04:00
|
|
|
|
the list will be needed.
|
|
|
|
|
|
|
|
|
|
Users can specify the `type` and `layout` in the [front-matter](/content/front-matter). `Section`
|
2014-09-03 00:12:26 -04:00
|
|
|
|
is determined based on the content file’s location. If `type` is provide,
|
2014-05-27 18:32:57 -04:00
|
|
|
|
it will be used instead of `section`.
|
|
|
|
|
|
|
|
|
|
### Single
|
|
|
|
|
|
2014-08-03 06:53:48 -04:00
|
|
|
|
* /layouts/`TYPE`-or-`SECTION`/`LAYOUT`.html
|
|
|
|
|
* /layouts/`TYPE`-or-`SECTION`/single.html
|
2014-05-27 18:32:57 -04:00
|
|
|
|
* /layouts/\_default/single.html
|
2014-08-03 06:53:48 -04:00
|
|
|
|
* /themes/`THEME`/layouts/`TYPE`-or-`SECTION`/`LAYOUT`.html
|
|
|
|
|
* /themes/`THEME`/layouts/`TYPE`-or-`SECTION`/single.html
|
2014-05-27 18:32:57 -04:00
|
|
|
|
* /themes/`THEME`/layouts/\_default/single.html
|
|
|
|
|
|
|
|
|
|
## Example Single Template File
|
2013-08-17 08:34:25 -04:00
|
|
|
|
|
|
|
|
|
Content pages are of the type "page" and have all the [page
|
2014-05-27 18:32:57 -04:00
|
|
|
|
variables](/layout/variables/) and [site
|
|
|
|
|
variables](/templates/variables/) available to use in the templates.
|
2013-08-17 08:34:25 -04:00
|
|
|
|
|
|
|
|
|
In the following examples we have created two different content types as well as
|
|
|
|
|
a default content type.
|
|
|
|
|
|
2014-05-27 18:32:57 -04:00
|
|
|
|
The default content template to be used in the event that a specific
|
|
|
|
|
template has not been provided for that type. The default type works the
|
2014-09-03 00:12:26 -04:00
|
|
|
|
same as the other types, but the directory must be called "\_default".
|
2014-05-27 18:32:57 -04:00
|
|
|
|
|
2013-08-17 08:34:25 -04:00
|
|
|
|
▾ layouts/
|
2014-05-27 18:32:57 -04:00
|
|
|
|
▾ _default/
|
|
|
|
|
single.html
|
2013-08-17 08:34:25 -04:00
|
|
|
|
▾ post/
|
|
|
|
|
single.html
|
|
|
|
|
▾ project/
|
|
|
|
|
single.html
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## post/single.html
|
|
|
|
|
This content template is used for [spf13.com](http://spf13.com).
|
2014-05-27 18:32:57 -04:00
|
|
|
|
It makes use of [partial templates](/layout/partials)
|
2013-08-17 08:34:25 -04:00
|
|
|
|
|
2014-06-06 16:15:19 -04:00
|
|
|
|
{{ partial "header.html" . }}
|
|
|
|
|
{{ partial "subheader.html" . }}
|
2013-08-17 08:34:25 -04:00
|
|
|
|
{{ $baseurl := .Site.BaseUrl }}
|
|
|
|
|
|
|
|
|
|
<section id="main">
|
|
|
|
|
<h1 id="title">{{ .Title }}</h1>
|
|
|
|
|
<div>
|
|
|
|
|
<article id="content">
|
|
|
|
|
{{ .Content }}
|
|
|
|
|
</article>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<aside id="meta">
|
|
|
|
|
<div>
|
|
|
|
|
<section>
|
|
|
|
|
<h4 id="date"> {{ .Date.Format "Mon Jan 2, 2006" }} </h4>
|
|
|
|
|
<h5 id="wc"> {{ .FuzzyWordCount }} Words </h5>
|
|
|
|
|
</section>
|
|
|
|
|
<ul id="categories">
|
|
|
|
|
{{ range .Params.topics }}
|
|
|
|
|
<li><a href="{{ $baseurl }}/topics/{{ . | urlize }}">{{ . }}</a> </li>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</ul>
|
|
|
|
|
<ul id="tags">
|
|
|
|
|
{{ range .Params.tags }}
|
|
|
|
|
<li> <a href="{{ $baseurl }}/tags/{{ . | urlize }}">{{ . }}</a> </li>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
2013-08-20 12:13:27 -04:00
|
|
|
|
{{ if .Prev }}
|
|
|
|
|
<a class="previous" href="{{.Prev.Permalink}}"> {{.Prev.Title}}</a>
|
|
|
|
|
{{ end }}
|
|
|
|
|
{{ if .Next }}
|
|
|
|
|
<a class="next" href="{{.Next.Permalink}}"> {{.Next.Title}}</a>
|
|
|
|
|
{{ end }}
|
2013-08-17 08:34:25 -04:00
|
|
|
|
</div>
|
|
|
|
|
</aside>
|
|
|
|
|
|
2014-06-06 16:15:19 -04:00
|
|
|
|
{{ partial "disqus.html" . }}
|
|
|
|
|
{{ partial "footer.html" . }}
|
2013-08-17 08:34:25 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## project/single.html
|
|
|
|
|
This content template is used for [spf13.com](http://spf13.com).
|
2014-05-27 18:32:57 -04:00
|
|
|
|
It makes use of [partial templates](/layout/partials)
|
2013-08-17 08:34:25 -04:00
|
|
|
|
|
|
|
|
|
|
2014-06-06 16:15:19 -04:00
|
|
|
|
{{ partial "header.html" . }}
|
|
|
|
|
{{ partial "subheader.html" . }}
|
2013-08-17 08:34:25 -04:00
|
|
|
|
{{ $baseurl := .Site.BaseUrl }}
|
|
|
|
|
|
|
|
|
|
<section id="main">
|
|
|
|
|
<h1 id="title">{{ .Title }}</h1>
|
|
|
|
|
<div>
|
|
|
|
|
<article id="content">
|
|
|
|
|
{{ .Content }}
|
|
|
|
|
</article>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<aside id="meta">
|
|
|
|
|
<div>
|
|
|
|
|
<section>
|
|
|
|
|
<h4 id="date"> {{ .Date.Format "Mon Jan 2, 2006" }} </h4>
|
|
|
|
|
<h5 id="wc"> {{ .FuzzyWordCount }} Words </h5>
|
|
|
|
|
</section>
|
|
|
|
|
<ul id="categories">
|
|
|
|
|
{{ range .Params.topics }}
|
|
|
|
|
<li><a href="{{ $baseurl }}/topics/{{ . | urlize }}">{{ . }}</a> </li>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</ul>
|
|
|
|
|
<ul id="tags">
|
|
|
|
|
{{ range .Params.tags }}
|
|
|
|
|
<li> <a href="{{ $baseurl }}/tags/{{ . | urlize }}">{{ . }}</a> </li>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</aside>
|
|
|
|
|
|
|
|
|
|
{{if isset .Params "project_url" }}
|
|
|
|
|
<div id="ribbon">
|
|
|
|
|
<a href="{{ index .Params "project_url" }}" rel="me">Fork me on GitHub</a>
|
|
|
|
|
</div>
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
2014-06-06 16:15:19 -04:00
|
|
|
|
{{ partial "footer.html" }}
|
2013-08-17 08:34:25 -04:00
|
|
|
|
|
|
|
|
|
Notice how the project/single.html template uses an additional parameter unique
|
|
|
|
|
to this template. This doesn't need to be defined ahead of time. If the key is
|
2014-05-27 18:32:57 -04:00
|
|
|
|
present in the front matter than it can be used in the template. To
|
|
|
|
|
easily generate new content of this type with these keys ready use
|
|
|
|
|
[content archetypes](/content/archetypes).
|