e1a4df05e8
Replace `template` call with the `partial` call (new in Hugo v0.12) for including partial templates
16 lines
384 B
HTML
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>
|