resume/layouts/partials/project.html
shockrah 73ca219509 Switching to quicker bullet points
because full grown adults have the attention span of flys apparantly
2021-02-27 21:55:41 -08:00

12 lines
401 B
HTML

<h3 class="mt-4"><i class="fas {{ .Site.Params.projects.icon }}"></i> {{ .Site.Params.projects.title }}</h3>
{{ range .Site.Params.projects.list }}
<h5> <a class="text-warning" href="{{ .url }}">{{ .title }}</a></h5>
<p>{{ .description | markdownify }}</p>
<ul class="list-unstyled">
{{ range .bullets }}
<li><i class="fas fa-caret-right"></i> {{ . | markdownify }}</li>
{{ end }}
</ul>
{{ end }}