Tyler Perkins
d53d7aa436
All checks were successful
continuous-integration/drone/push Build is passing
23 lines
945 B
HTML
23 lines
945 B
HTML
<footer>
|
|
<div class="footer-sections">
|
|
<div class="footer-list" style="width: 85%">
|
|
<h4 id="contact" class="footer-header" style="margin-bottom: 5px">Contact</h4>
|
|
|
|
{{ range .Site.Data.footer.Contact }}
|
|
<a data-value="{{ .name }}" class="scramble" href="{{ .url }}">{{ .name }}</a>
|
|
{{ end }}
|
|
</div>
|
|
<div class="footer-list" style="width: 85%"></div>
|
|
<div class="footer-list" style="width: 85%">
|
|
<h4 class="footer-header" style="margin-bottom: 5px">Services</h4>
|
|
|
|
{{ range .Site.Data.footer.Services }}
|
|
<a data-value="{{ .name }}" class="scramble" href="{{ .url }}">{{ .name }}</a>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
<p style="margin: 0px;">
|
|
<small>Copyleft <span style="display: inline-block; transform: rotate(180deg);">©</span> {{ now.Year }}. Free open source software</small>
|
|
</p>
|
|
</footer>
|