ar.falsy.cat/layouts/partials/footer.html

22 lines
599 B
HTML
Raw Normal View History

<hr/>
<div class="page-end">
<div class="backlinks-container">
{{partial "backlinks.html" .}}
</div>
<div>
{{partial "graph.html" .}}
</div>
2021-07-18 13:35:42 +00:00
</div>
<!-- Contact Info -->
<div id="contact_buttons">
2021-07-18 13:35:42 +00:00
<footer>
2021-07-18 15:54:00 +00:00
<p>Made by {{ $.Site.Data.config.name }} using <a href="https://github.com/jackyzha0/quartz">Quartz</a>, © {{ dateFormat "2006" now }}</p>
2021-07-18 13:35:42 +00:00
{{ if not .IsHome }}
2021-07-18 15:54:00 +00:00
<a href="/">Home</a>
2021-07-18 13:35:42 +00:00
{{end}}
2021-07-18 15:54:00 +00:00
{{- range $.Site.Data.config.links -}}
2021-07-18 13:35:42 +00:00
<a href="{{.link}}">{{.link_name}}</a>
{{- end -}}
</footer>
</div>