mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 14:16:20 -04:00
22 lines
865 B
HTML
22 lines
865 B
HTML
{{ define "main" }}
|
|
<main id="single">
|
|
<article>
|
|
<div id="meta">
|
|
<a class="no-underline" id="date" href="{{ .Permalink }}" title="{{ .Date.Format "Mon, Jan 2 2006 3:04:05 PM MST" }}">{{ .Date.Format "January 2, 2006" }}</a>{{ with .Site.Params.gitRepo }}<span id="edit"><span class="dash">—</span><a class="no-underline" href="{{ . }}/edit/master/content/{{ $.File.Path }}" title="Edit this post on GitHub" target="_blank" rel="noopener">Improve This Post</a></span>{{ end }}
|
|
</div>
|
|
|
|
<h1 id="title"><a class="no-underline" href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
|
|
|
|
<div id="content">
|
|
{{ .Content }}
|
|
</div>
|
|
|
|
{{ if and (ne .Params.comments false) (eq hugo.Environment "production") }}
|
|
<div id="comments">
|
|
{{ partial "scripts/utterances" . }}
|
|
</div>
|
|
{{ end }}
|
|
</article>
|
|
</main>
|
|
{{ end }}
|