1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 14:16:20 -04:00
jarv.is/layouts/_default/single.html

26 lines
1.0 KiB
HTML

{{ partial "header.html" . }}
{{ partial "blog-header.html" . }}
<main id="single">
<article>
<div id="info">
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
<div class="meta">
by <a rel="me author" href="{{ .Site.BaseURL }}" title="Jake Jarvis">Jake Jarvis</a> &middot;
<a href="{{ .Permalink }}">{{ .Date.Format "January 2, 2006" }}</a> &middot;
<!-- {{ if lt 1 .WordCount }}{{ .WordCount }} words{{ else }}{{ .WordCount }} word{{ end }} &middot; -->
{{ .ReadingTime }} minute read
<div class="tags">
{{ with .Params.tags }}{{ if ge (len .) 1 }}
{{ range . }}<span class="tag"><!--<a href="{{ $.Site.BaseURL }}tags/{{ . | urlize }}">-->{{ . }}<!--</a>--></span> {{ end }}
{{ end }}{{ end }}
</div>
</div>
</div>
<div id="content">
{{ .Content }}
</div>
<div id="commento"></div>
</article>
</main>
{{ partial "blog-footer.html" . }}
{{ partial "footer.html" . }}