This commit is contained in:
bel
2023-10-02 22:09:56 -06:00
parent aba83156ee
commit af2db988fb
3 changed files with 113 additions and 0 deletions

22
homebrew.tmpl Normal file
View File

@@ -0,0 +1,22 @@
<html>
<header>
</header>
<body>
<div name="name">
<h1>{{ range .resume.name }}{{ . }} {{ end }}</h1>
<h4>{{ .resume.title }}</h4>
</div>
<div name="contact">
{{ range .resume.contact.links }}
<div style="display: inline-block">
{{ .svg }}
<a href="{{ .link }}">{{ .text }}</a>
</div>
{{ end }}
</div>
<div name="headings">
</div>
</body>
<footer>
</footer>
</html>