2017-11-13 21:01:53 +00:00
|
|
|
{{ partial "header.html" . }}
|
2018-01-26 18:37:19 +00:00
|
|
|
<body>
|
2017-11-13 21:01:53 +00:00
|
|
|
|
|
|
|
<div class="section" id="top"><!-- Parent section -->
|
|
|
|
|
2018-03-25 15:55:27 +00:00
|
|
|
<div class="container hero {{ if .Site.Params.fadeIn | default true }}fade-in one{{ end }}"><!-- Begin Title -->
|
2018-03-25 15:08:39 +00:00
|
|
|
<h1 class="bold-title is-1">{{ .Site.Params.blogHead | default "Blog" }}</h1>
|
2017-11-13 21:01:53 +00:00
|
|
|
</div><!-- End Title -->
|
|
|
|
|
|
|
|
<!-- Everything below fades in two! -->
|
2018-03-25 15:55:27 +00:00
|
|
|
<div class="section no-padding {{ if .Site.Params.fadeIn | default true }}fade-in two{{ end }}">
|
2017-11-13 21:01:53 +00:00
|
|
|
|
|
|
|
<div class="container"><!-- Begin Nav bar -->
|
|
|
|
{{ partial "nav-list.html" . }}
|
|
|
|
</div><!-- End Nav bar -->
|
2018-03-25 15:08:39 +00:00
|
|
|
|
2017-11-13 21:01:53 +00:00
|
|
|
<div class="container"><!-- Begin Blog container -->
|
|
|
|
|
2018-01-27 01:10:03 +00:00
|
|
|
{{ if .Site.Params.showLatest }}
|
2017-11-13 21:01:53 +00:00
|
|
|
<h2 class="title is-2 top-pad">Latest Post</h2>
|
2018-03-25 15:08:39 +00:00
|
|
|
{{ range first 1 (where .Data.Pages.ByPublishDate.Reverse "Section" "blog") }}
|
|
|
|
<div class="summary">{{ .Date.Format (.Site.Params.dateform | default "Jan 02, 2006") }}
|
2017-11-13 21:01:53 +00:00
|
|
|
<h3 class="title is-3 strong-post-title"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
|
|
|
<div class="markdown">
|
|
|
|
{{ .Summary }}
|
|
|
|
{{ if .Truncated }}
|
|
|
|
<a href="{{ .RelPermalink }}">...Read More</a>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<h2 class="title is-2 top-pad">All Posts</h2>
|
|
|
|
<ul>
|
|
|
|
{{ range .Data.Pages.ByPublishDate }}
|
|
|
|
{{ if eq .Section "blog" }}
|
|
|
|
{{ partial "li.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
</div><!-- End Blog container -->
|
|
|
|
|
|
|
|
<div class="container has-text-centered top-pad">
|
|
|
|
<hr>
|
|
|
|
<a href="{{ .Permalink }}#top"><i class="fa fa-arrow-up"></i></a>
|
|
|
|
<hr>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
</div><!-- End fade in two -->
|
|
|
|
</div><!-- End parent section -->
|
|
|
|
|
|
|
|
<!-- Bitty scrolling links script -->
|
|
|
|
<script>
|
|
|
|
$('a[href^="{{ .Permalink }}#"]').click(function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
var target = this.hash;
|
|
|
|
$('html, body').animate({
|
|
|
|
scrollTop: $(target).offset().top
|
|
|
|
}, 500);
|
|
|
|
return false;
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
2017-12-05 04:04:11 +00:00
|
|
|
</body>
|