hugo-theme-hyde-hyde/layouts/index.html

27 lines
454 B
HTML
Raw Normal View History

2014-05-23 20:44:37 +00:00
{{ template "theme/partials/head.html" . }}
2014-04-26 22:25:13 +00:00
<body>
2014-05-23 20:44:37 +00:00
{{ template "theme/partials/sidebar.html" . }}
2014-04-26 22:25:13 +00:00
<div class="content container">
<div class="posts">
{{ range .Data.Pages }}
<div class="post">
<h1 class="post-title">
<a href="{{ .Permalink }}">
{{ .Title }}
</a>
</h1>
<span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
{{ .Content }}
</div>
{{ end }}
</div>
</body>
</html>