mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 17:48:30 -04:00
27 lines
817 B
HTML
27 lines
817 B
HTML
{{ define "main" }}
|
|
<div id="single">
|
|
<div id="info">
|
|
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
|
|
<div class="meta">
|
|
{{ .Date.Format "January 2, 2006" }} · {{ 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>
|
|
{{ if .Site.Params.enableToc }}
|
|
{{ if .TableOfContents }}
|
|
<div id="toc">
|
|
{{ .TableOfContents }}
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
<div id="content">
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
{{ end }} |