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

24 lines
749 B
HTML
Raw Normal View History

2021-12-27 20:59:19 +00: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-02 21:50:58 +00:00
<<<<<<< Updated upstream
2021-12-27 20:59:19 +00:00
{{ if not .IsHome }}
<a href="/">Home</a>
{{end}}
{{- range $.Site.Data.config.links -}}
2022-04-02 16:37:12 +00:00
&ZeroWidthSpace;<a href="{{.link}}">{{.link_name}}</a>
2021-12-27 20:59:19 +00:00
{{- end -}}
2022-04-02 21:50:58 +00:00
=======
<ul>
{{ if not .IsHome }}
<li><a href="/">Home</a></li>
{{end}}
{{- range $.Site.Data.config.links -}}
<li><a href="{{.link}}">{{.link_name}}</a></li>
{{- end -}}
</ul>
>>>>>>> Stashed changes
2021-12-27 20:59:19 +00:00
</footer>
2022-04-02 16:37:12 +00:00
</div>