separate contact links semantically

This commit is contained in:
meleu 2022-04-02 18:50:58 -03:00
parent 16f8cd7100
commit a469653f75
2 changed files with 23 additions and 0 deletions

View File

@ -520,3 +520,15 @@ header {
user-select: none;
}
}
#contact_buttons ul {
list-style-type: none;
li {
display: inline-block;
}
li a {
padding: 5px 20px;
}
}

View File

@ -2,11 +2,22 @@
<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>
<<<<<<< Updated upstream
{{ if not .IsHome }}
<a href="/">Home</a>
{{end}}
{{- range $.Site.Data.config.links -}}
&ZeroWidthSpace;<a href="{{.link}}">{{.link_name}}</a>
{{- end -}}
=======
<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
</footer>
</div>