hugo-theme-hyde-hyde/layouts/_default/list.html
Anthony Fok e1a4df05e8 Use partial call to include partial templates
Replace `template` call with the `partial` call (new in Hugo v0.12)
for including partial templates
2014-09-08 12:13:10 -04:00

16 lines
384 B
HTML

{{ partial "head.html" . }}
<body>
{{ partial "sidebar.html" . }}
<div class="content container">
<ul class="posts">
{{ range .Data.Pages }}
<li>
<span><a href="{{ .Permalink }}">{{ .Title }}</a> <time class="pull-right post-list">{{ .Date.Format "Mon, Jan 2, 2006" }}</time></span>
</li>
{{ end }}
</ul>
</div>
</body>
</html>