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

22 lines
806 B
HTML

{{ partial "header.html" . }}
{{ partial "blog-header.html" . }}
<div id="single">
<div id="info">
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
<div class="meta">
{{ .Date.Format "January 2, 2006" }} &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>
{{ partial "blog-footer.html" . }}
{{ partial "footer.html" . }}