🗃️ Reorganize resume sections for modularity

This commit is contained in:
Dan Jones 2025-11-22 12:37:16 -06:00
commit 47eb246b7d
9 changed files with 37 additions and 21 deletions

View file

@ -20,20 +20,20 @@
{{ with .Params.Description }}<p>{{ . | markdownify }}</p>{{ end }}
</header>
{{ with .Resources.Get "sections/005-contact.md" }}
{{ with .Resources.Get "sections/head-005-contact.md" }}
<aside id="{{ .Params.id }}" class="{{ .Params.class }}">
{{ .Content }}
</aside>
{{ end }}
{{ with .Resources.Get "sections/007-summary.md" }}
{{ with .Resources.Get "sections/head-007-summary.md" }}
<aside id="{{ .Params.id }}" class="{{ .Params.class }}">
<h2>Objectives</h3>
{{ .Content }}
</aside>
{{ end }}
{{ with .Resources.Get "sections/010-skills.md" }}
{{ with .Resources.Get "sections/head-010-skills.md" }}
<aside id="{{ .Params.id }}" class="{{ .Params.class }}">
{{ .Content }}
</aside>
@ -43,6 +43,12 @@
{{ .Content }}
</div>
{{ with .Resources.Get "sections/foot-015-edu.md" }}
<aside id="{{ .Params.id }}" class="{{ .Params.class }}">
{{ .Content }}
</aside>
{{ end }}
{{ with .Resources.Get "data/projects.toml" }}
<aside id="projects">
{{ partial "projects.resume.html" . }}