website/themes/terminal-plus-minus/layouts/partials/author/support.html

19 lines
542 B
HTML
Raw Normal View History

2019-09-01 17:51:06 +00:00
<!-- SUPPORT section -->
{{- with $.Site.Data.Support.list -}}
<section class="site__support">
<h2 class="support__header">Support</h2>
<p>
You can support me through the following links. It'll help me
get started on doing my project ideas a reality and hopefully help
some people with my creations.
</p>
<ul class="support__links">
{{- range . -}}
<li class="support__link">
<a href="{{ .url }}">{{ .name }}</a>
</li>
{{- end -}}
</ul>
</section>
{{- end -}}