website/layouts/_default/single.html

67 lines
2.5 KiB
HTML
Raw Normal View History

{{ define "stylesheet" }}{{ $scss := resources.Get "/_default/single.scss" }}{{ $style := $scss | resources.ToCSS }}
2020-09-26 17:57:12 +02:00
<link rel="stylesheet" href="{{ $style.Permalink }}" type="text/css" media="screen" rel="preload" />
2020-09-14 16:24:02 +02:00
{{ end }}
{{ define "main" }}
<main>
<div class="container">
<section class="section-article">
<article>
<p class="meta">
2020-10-09 10:00:12 +02:00
{{ if eq .Params.type "project" }}<span title="{{ .Date.Format "2. January 2006" }}">last updated: {{ .Date.Format "2. January 2006" }}</span>{{ end }}
{{ if eq .Params.type "post" }}<span title="{{ .Date.Format "2. January 2006, 15:04 MST" }}">{{ .Date.Format "2. January 2006" }}</span>{{ end }}
{{ if eq .Params.type "privacy" }}<span title="{{ .Date.Format "2. January 2006" }}">last updated: {{ .Date.Format "2006-01-02" }}</span>{{ end }}
<span>{{ with .Params.author }}by {{ end }}{{ .Params.author }}</span>
2020-09-14 16:24:02 +02:00
</p>
<h1 class="title">{{ .Title }}</h1>
{{ with .Params.featured_image }}
2020-10-05 09:57:10 +02:00
<img src="{{ . | relURL }}" loading="lazy" alt="">
2020-09-14 16:24:02 +02:00
{{ end }}
{{ .Content }}
<aside class="meta">
2020-09-17 21:51:17 +02:00
{{ with .Params.topics }}
2020-09-14 16:24:02 +02:00
<ul class="topics">
{{ range . }}
2020-10-05 09:57:10 +02:00
<li>
<a href="{{ "topics" | relURL}}/{{ . | urlize }}">{{ . }}</a>
</li>
2020-09-14 16:24:02 +02:00
{{ end }}
</ul>
{{ end }}
{{ with .Params.tags }}
2020-10-05 09:57:10 +02:00
<h3>tags</h3>
2020-09-14 16:24:02 +02:00
<ul class="tags">
{{ range . }}
2020-10-05 09:57:10 +02:00
<li>
<a href="{{ "tags" | relURL }}/{{ . | urlize }}">{{ . }}</a>
</li>
2020-09-14 16:24:02 +02:00
{{ end }}
</ul>
{{ end }}
</aside>
</article>
</section>
2020-10-09 10:00:12 +02:00
{{ if ne .Params.type "privacy" }}
<section class="section-articles">
<article class="next-article">
{{ with .NextInSection }}
<a href="{{ .Permalink }}">
{{ if eq .Params.type "project" }}&leftarrow; next project{{ end }}
{{ if ne .Params.type "project" }}&leftarrow; next article{{ end }}
</a>
{{ end }}
</article>
<article class="previous-article">
{{ with .PrevInSection }}<span></span>
<a href="{{ .Permalink }}">
{{ if eq .Params.type "project" }}previous project &rightarrow;{{ end }}
{{ if ne .Params.type "project" }}previous article &rightarrow;{{ end }}
</a>
{{ end }}
</article>
</section>
{{ end }}
2020-09-14 16:24:02 +02:00
</div>
</main>
{{ end }}