mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 14:16:20 -04:00
26 lines
1.0 KiB
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> ·
|
|
<a href="{{ .Permalink }}">{{ .Date.Format "January 2, 2006" }}</a> ·
|
|
<!-- {{ if lt 1 .WordCount }}{{ .WordCount }} words{{ else }}{{ .WordCount }} word{{ end }} · -->
|
|
{{ .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" . }} |