hugo/docs/content/layout/homepage.md

1.5 KiB

title date groups groups_weight notoc
Homepage Templates 2013-07-01
layout
30 true

Home pages are of the type "node" and have all the node variables available to use in the templates.

This is the only required template for building a site and useful when bootstrapping a new site and template.

In addition to the standard node variables, the homepage has access to all site content accessible from .Data.Pages . Details on how to use this list of pages can be found in Lists

▾ layouts/
    index.html

example index.html

This content template is used for spf13.com.

It makes use of chrome templates and uses a List

{{% highlight html %}}

<html class="no-js" lang="en-US" prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#"> <head>
{{ template "chrome/meta.html" . }}

<base href="{{ .Site.BaseUrl }}">
<title>{{ .Site.Title }}</title>
<link rel="canonical" href="{{ .Permalink }}">
<link href="{{ .RSSlink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />

{{ template "chrome/head_includes.html" . }}
</head>

{{ template "chrome/subheader.html" . }}

{{ range first 10 .Data.Pages }} {{ .Render "summary"}} {{ end }}

{{ template "chrome/footer.html" }} {{% /highlight %}}