typo: rename 'resumé' to 'résumé'
All checks were successful
buildbot/nix-eval Build done.
buildbot/nix-build Build done.
buildbot/nix-effects Build done.

This commit is contained in:
2025-11-04 20:19:54 +01:00
parent 9a30210864
commit 47473a53b5
23 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<div>
{{ for item of section.items }}
<div>
{{ if "items" in item }}
<strong>{{ item.name }}:</strong>
<ul>
{{ for i of item.items }}
<li>{{ i |> djot }}</li>
{{ /for }}
</ul>
{{ else }}
<p>
<strong>{{ item.name }}:</strong> {{ item.content }}
</p>
{{ /if }}
</div>
{{ /for }}
</div>