hmn/src/templates/src/roles.html

18 lines
450 B
HTML

{{ template "base.html" . }}
{{ define "content" }}
<div class="ph3 ph0-ns">
<h1>Get involved!</h1>
<p>
Excited about our mission? We want your help with the following positions:
</p>
<div class="flex flex-column flex-row-ns g3">
{{ range .Roles }}
<div class="flex-fair">
{{ template "role_card.html" . }}
</div>
{{ end }}
</div>
</div>
{{ end }}