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

36 lines
1.4 KiB
HTML
Raw Normal View History

2017-03-13 09:14:02 +00:00
{{ partial "header.html" . }}
<body>
2018-06-25 13:03:18 +00:00
<!-- Parent section -->
2017-11-13 21:01:53 +00:00
<div class="section" id="top">
2018-06-25 13:03:18 +00:00
<!-- Begin Title -->
2018-01-27 01:10:03 +00:00
<div class="container hero {{ if .Site.Params.fadeIn }} fade-in one {{ end }}">
2017-11-13 21:01:53 +00:00
<h1 class="bold-title is-1">{{ .Title }}</h1>
</div>
<!-- End Title -->
<!-- Everything below fades in two! -->
2018-01-27 01:10:03 +00:00
<div class="section no-padding {{ if .Site.Params.fadeIn }} fade-in two {{ end }}">
2018-06-11 23:39:40 +00:00
{{ partial "nav.html" . }}
2018-06-25 13:03:18 +00:00
<div class="container markdown {{ if .Site.Params.fadeIn | default true }}fade-in two{{ end }} top-pad">
2017-11-13 21:01:53 +00:00
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
{{ .Content }}
2018-06-25 13:03:18 +00:00
</div>
<!-- Begin Blog container -->
2017-11-13 21:01:53 +00:00
<div class="container">
<ul>
2018-06-26 22:30:17 +00:00
<!-- Ranges through content/*/*.md -->
2017-11-13 21:01:53 +00:00
{{ range .Data.Pages.ByPublishDate }} {{ if not (eq .Section "blog") }}
<li>
<a href="{{.Permalink}}">{{.Date.Format (.Site.Params.dateform | default "Jan 02, 2006") }} | {{.Title}}</a>
2017-11-13 21:01:53 +00:00
</li>
{{ end }} {{ end }}
</ul>
</div>
<!-- End Blog container -->
2018-06-25 13:03:18 +00:00
{{ partial "top-icon-with-hr.html" . }}
2017-11-13 21:01:53 +00:00
{{ partial "footer.html" . }}
</div>
<!-- End fade in two -->
2017-03-13 09:14:02 +00:00
</div>
2017-11-13 21:01:53 +00:00
<!-- End parent section -->
</body>