1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-19 17:05:32 -04:00

HTML5 elements and random CSS improvements

This commit is contained in:
2019-04-12 12:38:00 -04:00
parent c7e4caeadc
commit e216cf7eec
11 changed files with 189 additions and 150 deletions

View File

@@ -1,21 +1,19 @@
{{ partial "header.html" . }}
{{ partial "blog-header.html" . }}
<div id="archive">
<main id="archive">
{{ range .Data.Pages.GroupByDate "2006" }}
<div class="year">
<section class="year">
<h2>{{ .Key }}</h2>
<ul>
{{ range .Pages }}
<li class="item">
{{ range .Pages }}
<li>
<div class="date">{{ .Date.Format "Jan 2" }}</div>
<div class="title"><a href="{{ .Permalink }}">{{ .Title }}</a></div>
</li>
{{ end }}
{{ end }}
</ul>
</div>
</section>
{{ end }}
</div>
</main>
{{ partial "blog-footer.html" . }}
{{ partial "footer.html" . }}