📄 Add print layout for resume

This commit is contained in:
Dan Jones 2025-11-21 21:51:45 -06:00
commit 83109656a8
7 changed files with 90 additions and 2 deletions

View file

@ -0,0 +1,9 @@
{{ with . | transform.Unmarshal -}}
<ul>
{{- range $project := . -}}
{{- range $slug, $proj := $project }}
<li class="project {{ $slug }}"><a href="{{ $proj.url }}">{{ $proj.name }}</a> {{ $proj.desc }}</li>
{{- end -}}
{{- end }}
</ul>
{{- end }}