hugo-theme-hyde-hyde/layouts/_default/list.html
2018-01-23 10:02:05 +07:00

18 lines
No EOL
505 B
HTML

{{ define "main" }}
<h1 class="title">{{ .Title }}</h1>
<ul class="posts">
{{ range .Data.Pages -}}
<li>
<span><a href="{{ .Permalink }}">{{ .Title }}</a> <time class="pull-right post-list">{{ .Date.Format "Jan 2, 2006" }}</time></span>
</li>
{{- end }}
</ul>
{{- end }}
{{ define "footer" }}
<!-- Footer -->
{{ if .Site.GoogleAnalytics -}}
{{ template "_internal/google_analytics_async.html" . }}
{{- end}}
<script src="{{ .Site.BaseURL }}js/main.js"></script>
{{- end }}