add html resume

This commit is contained in:
2025-10-25 00:15:22 +02:00
parent 16fbd8b6f0
commit 391929926a
15 changed files with 355 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>