all repos — blog @ 22919b36b22089b7aca1e1b4e08e481c453ff909

Code and content for 5ika.ch

layouts/shortcodes/activity.html (view raw)

 1<h3 style="margin-top:2rem">Activité récente</h3>
 2<div class="activity-grid">
 3    <h4>Dernière publication</h4>
 4    <div>
 5        {{ range first 1 (where site.RegularPages "Section" "posts") }}
 6        <a href="{{ .RelPermalink }}">{{ .LinkTitle }} <span class='date'>{{ .Date | time.Format "02.01.06" }}</span></a>
 7        {{end}}
 8    </div>
 9
10    <h4>Lecture en cours</h4>
11    <div>
12    {{ $outbox := dict }}
13    {{ with resources.GetRemote "https://bookwyrm.social/user/5ika/outbox?page=1" }}
14        {{ with .Err }}
15            {{ errorf "%s" . }}
16        {{ else }}
17            {{ $outbox = . | transform.Unmarshal }}
18            {{ with index $outbox.orderedItems 0 }}
19                <a href='{{ .id }}' target="_blank">
20                    {{ with index .attachment 0 }}
21                        {{ .name }}
22                    {{ end }}
23                </a>
24            {{ end }}
25        {{ end }}
26    {{ end }}
27    </div>
28</div>