public_notes/layouts/partials/contact.html

15 lines
506 B
HTML
Raw Normal View History

2021-12-28 05:59:19 +09: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 06:50:58 +09:00
<ul>
{{ if not .IsHome }}
2022-07-14 14:27:13 +09:00
<li><a href="{{ $.Site.BaseURL}}">Home</a></li>
2022-04-03 06:50:58 +09:00
{{end}}
{{- range $.Site.Data.config.links -}}
<li><a href="{{.link}}">{{.link_name}}</a></li>
{{- end -}}
</ul>
2021-12-28 05:59:19 +09:00
</footer>
2022-04-03 01:37:12 +09:00
</div>