All checks were successful
Build and Deploy Hugo Site / build-and-deploy (push) Successful in 9s
59 lines
2.6 KiB
HTML
59 lines
2.6 KiB
HTML
{{ define "main" }}
|
|
<article class="post">
|
|
<header class="post-header">
|
|
<h1>{{ .Title }}</h1>
|
|
<div class="post-meta">
|
|
<time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "January 2, 2006" }}</time>
|
|
{{ with .Params.categories }}
|
|
<span class="post-categories">
|
|
{{ range . }}
|
|
<a href="{{ "/categories/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
|
|
{{ end }}
|
|
</span>
|
|
{{ end }}
|
|
</div>
|
|
</header>
|
|
|
|
<div class="post-content">
|
|
{{ .Content }}
|
|
</div>
|
|
|
|
{{ if .Params.tags }}
|
|
<footer class="post-footer">
|
|
<div class="post-tags">
|
|
<strong>Tags:</strong>
|
|
{{ range .Params.tags }}
|
|
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}" class="tag">{{ . }}</a>
|
|
{{ end }}
|
|
</div>
|
|
</footer>
|
|
{{ end }}
|
|
|
|
{{ with .PrevInSection }}
|
|
<nav class="post-nav">
|
|
<div class="post-nav-prev">
|
|
<a href="{{ .RelPermalink }}">← {{ .Title }}</a>
|
|
</div>
|
|
{{ end }}
|
|
{{ with .NextInSection }}
|
|
<div class="post-nav-next">
|
|
<a href="{{ .RelPermalink }}">{{ .Title }} →</a>
|
|
</div>
|
|
{{ end }}
|
|
{{ if or .PrevInSection .NextInSection }}
|
|
</nav>
|
|
{{ end }}
|
|
|
|
{{ if .Section }}
|
|
<div class="edit-page">
|
|
<a href="https://git.sometimescode.com/cgsmith/sometimescode.com/src/branch/main/content/{{ .Section }}/{{ .File.BaseFileName }}.md?display=source" target="_blank" rel="noopener">
|
|
<svg width="16" height="16" viewBox="-0.05 98.32 512.15 315.48" fill="currentColor" style="vertical-align: middle; margin-right: 0.5rem;">
|
|
<path d="M502.6 103.7c-3.3-3.3-7.8-3.3-7.8-3.3s-95.5 5.4-144.9 6.5c-10.8.2-21.6.5-32.3.6V203c-4.5-2.1-9-4.3-13.5-6.4 0-29.6-.1-88.9-.1-88.9-23.6.3-72.7-1.8-72.7-1.8s-115.2-5.8-127.7-6.9c-8-.5-18.3-1.7-31.8 1.2-7.1 1.5-27.3 6-43.8 21.9C-8.7 154.8.7 206.7 1.9 214.5c1.4 9.5 5.6 36 25.8 59 37.3 45.7 117.6 44.6 117.6 44.6s9.9 23.5 24.9 45.2c20.4 27 41.3 48 61.7 50.5 51.3 0 153.9-.1 153.9-.1s9.8.1 23-8.4c11.4-6.9 21.6-19.1 21.6-19.1s10.5-11.2 25.2-36.9c4.5-7.9 8.2-15.6 11.5-22.8 0 0 45-95.4 45-188.2-1-28-7.9-33-9.5-34.6M97.7 269.9c-21.1-6.9-30.1-15.2-30.1-15.2S52 243.8 44.2 222.3c-13.4-36-1.1-58-1.1-58s6.8-18.3 31.4-24.4c11.2-3 25.2-2.5 25.2-2.5s5.8 48.4 12.8 76.7c5.9 23.8 20.2 63.3 20.2 63.3s-21.3-2.6-35-7.5m244.6 87.6s-5 11.8-16 12.5c-4.7.3-8.4-1-8.4-1s-.2-.1-4.3-1.7l-92-44.8s-8.9-4.6-10.4-12.7c-1.8-6.6 2.2-14.7 2.2-14.7l44.2-91.1s3.9-7.9 9.9-10.6c.5-.2 1.9-.8 3.7-1.2 6.6-1.7 14.7 2.3 14.7 2.3l90.2 43.7s10.3 4.6 12.5 13.2c1.5 6-.4 11.4-1.5 14-5.2 12.6-44.8 92.1-44.8 92.1"/>
|
|
</svg>
|
|
Edit this page on Gitea
|
|
</a>
|
|
</div>
|
|
{{ end }}
|
|
</article>
|
|
{{ end }}
|