quartz/layouts/partials/contact.html

15 lines
506 B
HTML
Raw Normal View History

2021-12-27 23:59:19 +03:00
<!-- Contact Info -->
<div id="contact_buttons">
<footer>
<p>Made by {{ $.Site.Data.config.name }} using <a href="https://github.com/jackyzha0/quartz">Quartz</a>, © {{ dateFormat "2006" now }}</p>
2022-04-03 00:50:58 +03:00
<ul>
{{ if not .IsHome }}
2022-07-14 08:27:13 +03:00
<li><a href="{{ $.Site.BaseURL}}">Home</a></li>
2022-04-03 00:50:58 +03:00
{{end}}
{{- range $.Site.Data.config.links -}}
<li><a href="{{.link}}">{{.link_name}}</a></li>
{{- end -}}
</ul>
2021-12-27 23:59:19 +03:00
</footer>
2022-04-02 19:37:12 +03:00
</div>