hugo-theme-hyde-hyde/layouts/_default/list.html

18 lines
505 B
HTML
Raw Normal View History

{{ define "main" }}
<h1 class="title">{{ .Title }}</h1>
2017-09-07 19:41:16 +00:00
<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 }}
2017-09-07 19:41:16 +00:00
</ul>
{{- end }}
{{ define "footer" }}
2018-01-23 03:02:05 +00:00
<!-- Footer -->
{{ if .Site.GoogleAnalytics -}}
{{ template "_internal/google_analytics_async.html" . }}
{{- end}}
2018-01-23 03:02:05 +00:00
<script src="{{ .Site.BaseURL }}js/main.js"></script>
2017-09-07 19:41:16 +00:00
{{- end }}