2017-03-13 09:14:02 +00:00
|
|
|
{{ partial "header.html" . }}
|
2018-01-26 18:37:19 +00:00
|
|
|
<body>
|
2017-03-13 09:14:02 +00:00
|
|
|
|
2017-11-13 21:01:53 +00:00
|
|
|
<div class="section" id="top">
|
|
|
|
<!-- Parent section -->
|
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
|
|
|
<!-- Begin Title -->
|
|
|
|
<h1 class="bold-title is-1">{{ .Title }}</h1>
|
|
|
|
</div>
|
|
|
|
<!-- End Title -->
|
2017-03-26 05:23:50 +00:00
|
|
|
|
|
|
|
<!-- 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 }}">
|
2017-03-26 05:23:50 +00:00
|
|
|
|
2017-11-13 21:01:53 +00:00
|
|
|
<div class="container">
|
|
|
|
<!-- Begin Nav bar -->
|
|
|
|
{{ partial "nav-list.html" . }}
|
2017-03-26 05:23:50 +00:00
|
|
|
</div>
|
2017-11-13 21:01:53 +00:00
|
|
|
<!-- End Nav bar -->
|
|
|
|
<article>
|
|
|
|
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
|
|
|
|
{{ .Content }}
|
|
|
|
</article>
|
|
|
|
|
2017-03-13 09:14:02 +00:00
|
|
|
|
2017-11-13 21:01:53 +00:00
|
|
|
<div class="container">
|
|
|
|
<!-- Begin Blog container -->
|
|
|
|
<ul>
|
|
|
|
<!-- Ranges through content/post/*.md -->
|
|
|
|
{{ range .Data.Pages.ByPublishDate }} {{ if not (eq .Section "blog") }}
|
|
|
|
<li>
|
2018-01-27 01:10:03 +00:00
|
|
|
<a href="{{.Permalink}}">{{.Date.Format .Site.Params.dateForm }} | {{.Title}}</a>
|
2017-11-13 21:01:53 +00:00
|
|
|
</li>
|
|
|
|
{{ end }} {{ end }}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<!-- End Blog container -->
|
2017-03-13 09:14:02 +00:00
|
|
|
|
2017-11-13 21:01:53 +00:00
|
|
|
<div class="container has-text-centered top-pad">
|
|
|
|
<hr>
|
|
|
|
<a href="{{ .Permalink }}#top">
|
|
|
|
<i class="fa fa-arrow-up"></i>
|
|
|
|
</a>
|
|
|
|
<hr>
|
|
|
|
</div>
|
2017-03-13 09:14:02 +00:00
|
|
|
|
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 -->
|
2017-03-26 05:23:50 +00:00
|
|
|
|
2017-04-20 03:06:33 +00:00
|
|
|
<!-- Bitty scrolling links script -->
|
2017-03-26 05:23:50 +00:00
|
|
|
<script>
|
2017-11-13 21:01:53 +00:00
|
|
|
$('a[href^="{{ .Permalink }}#"]').click(function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
var target = this.hash;
|
|
|
|
$('html, body').animate({
|
|
|
|
scrollTop: $(target).offset().top
|
|
|
|
}, 500);
|
|
|
|
return false;
|
|
|
|
})
|
2017-05-05 11:03:05 +00:00
|
|
|
</script>
|
2017-06-16 10:30:47 +00:00
|
|
|
|
|
|
|
</body>
|