1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 05:38:26 -04:00
jarv.is/layouts/_default/single.html

25 lines
930 B
HTML

{{ define "main" }}
<main id="single">
<article>
<div id="meta">
<h1><a href="{{ .Permalink }}" class="no-underline">{{ .Title }}</a></h1>
<div id="byline">
by <a class="no-underline" href="{{ .Site.BaseURL }}" rel="me author">{{ .Site.Author.name }}</a>
&middot; <a class="no-underline" href="{{ .Permalink }}" title="{{ .Date.Format "Mon, Jan 2 2006 3:04:05 PM MST" }}">{{ .Date.Format "January 2, 2006" }}</a>
{{ with .Site.Params.gitRepo }}&middot; <a class="no-underline" href="{{ . }}/blob/master/content/{{ $.File.Path }}" title="Edit this page on GitHub" target="_blank" rel="noopener">Improve Post</a>{{ end }}
<ul id="tags">
{{- with .Params.tags }}
{{- range . }}
<li>{{ . }}</li>
{{- end }}
{{- end }}
</ul>
</div>
</div>
<div id="content">
{{ .Content }}
</div>
</article>
</main>
{{ end }}