Update posts partial

This commit is contained in:
hedy 2023-08-27 20:01:06 +08:00
parent 72d4d2b30c
commit ec1faf8488
Signed by: hedy
GPG Key ID: B51B5A8D1B176372
1 changed files with 28 additions and 23 deletions

View File

@ -4,33 +4,38 @@
{{ 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>
<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>
{{- range (where .Site.RegularPages "Section" "posts") }}
<li>
{{ if in $outerRel "posts" -}}
<h2>
{{ else -}}
<h3>
{{ end -}}
<a href="{{ .Permalink }}">
{{- .Title -}}
</a>
<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 }}
</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>