site/layouts/partials/posts.html

42 lines
1.4 KiB
HTML

{{ $outerRel := .RelPermalink -}}
{{ if in $outerRel "posts" -}}
<h1>Posts</h1>
{{ else -}}
<h2>Posts</h2>
{{ end -}}
<p>
These are my long-form musings. I aim to write at least twice a year, but over the past two years I have clearly failed in this aspect. I'll try to write more often 🤞
</p><p>
Comments can be sent to my <a href="https://lists.sr.ht/~hedy/posts">public mailing list</a> where I'll also send new posts (after 2023) as plain text to. If you subscribe to the list, it acts like a newsletter where you'll receive new posts from your inbox. Posting and subscribing happen solely through emails. No external auth required.
</p>
<p class="meta">
<a href="{{ .Site.BaseURL }}tags/">Tags</a> |
<a href="{{ .Site.BaseURL }}posts/index.xml">RSS feed</a> |
<a href="{{ .Site.BaseURL }}posts/atom.xml">Atom feed</a>
</p>
<ul class="post-list">
{{- range (where .Site.RegularPages "Section" "posts") }}
<li>
{{ if in $outerRel "posts" -}}
<h2>
{{ else -}}
<h3>
{{ end -}}
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{ if in $outerRel "posts" -}}
</h2>
{{ else -}}
</h3>
{{ end -}}
<p>Posted:
<time datetime="{{ .Date.Format "2006-01-02 15:04:05Z07:00" }}">{{ .Date.Format "2006-01-02" }}</time>
{{ partial "lastmod.html" . }}
</p>
<p class="desc">{{ .Description }}</p>
</li>
{{- end }}
</ul>