mirror of
https://github.com/Brandon-Rozek/website-theme.git
synced 2024-11-09 19:00:34 -05:00
44 lines
1.4 KiB
HTML
44 lines
1.4 KiB
HTML
{{ define "main"}}
|
|
<article class="h-entry">
|
|
<h1 class='title p-name'>{{ .Title }}</h1>
|
|
{{ partial "header.html" . }}
|
|
<!-- date -->
|
|
{{ if not .Date.IsZero }}
|
|
{{ $singlePageDateFormat := .Site.Params.singlePageDateFormat | default "January 2, 2006"}}
|
|
<p class="date"><time class="dt-published" datetime='{{ .Date.Format "2006-01-02" }}'>{{ .Date.Format $singlePageDateFormat }}</time></p>
|
|
<a style="display: none" class="u-url" href="{{ .Permalink }}"></a>
|
|
{{ end }}
|
|
<!-- tags -->
|
|
<div id="tags">
|
|
<ul>
|
|
{{ range .Param "tags" }}
|
|
{{ $name := . }}
|
|
{{ with $.Site.GetPage (printf "/tags/%s" ($name | urlize)) }}
|
|
<li><a class="p-category" href="{{ .Permalink }}">{{ $name }}</a></li>
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
<!-- content -->
|
|
<div id="contentBody" class="e-content">
|
|
{{ .Content }}
|
|
</div>
|
|
</article>
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "NewsArticle",
|
|
"headline": "{{ .Title }}",
|
|
"image": [
|
|
"{{ .Site.BaseURL }}/img/{{ .Site.Params.avatar }}"
|
|
],
|
|
"datePublished": "{{ .Date.Format "2006-01-02" }}",
|
|
"author": [{
|
|
"@type": "Person",
|
|
"name": "{{ .Site.Params.Author }}",
|
|
"url": "{{ .Site.BaseURL }}"
|
|
}]
|
|
}
|
|
</script>
|
|
{{ partial "footer.html" . }}
|
|
{{ end }}
|