mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 05:38:26 -04:00
25 lines
930 B
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>
|
|
· <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 }}· <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 }}
|