all repos — blog @ 97377ec40fc3fcc2f7ee7a98cf0f6e84d11d24d0

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 }}"
 7      >{{ .LinkTitle }}
 8      <span class="date">{{ .Date | time.Format "02.01.06" }}</span></a
 9    >
10    {{end}}
11  </div>
12
13  <h4>Lecture en cours</h4>
14  <div>
15    {{ $outbox := dict }} {{ with resources.GetRemote
16    "https://bookwyrm.social/user/5ika/outbox?page=1" }} {{ $outbox = . |
17    transform.Unmarshal }} {{ with index $outbox.orderedItems 0 }}
18    <a href="{{ .id }}" target="_blank">
19      {{ with index .attachment 0 }} {{ .name }} {{ end }}
20    </a>
21    {{ end }} {{ end }}
22  </div>
23</div>