website/layouts/shortcodes/links.html
Gabriel Arazas d93a666ddb Update the site layout
Now with improved horizontal rules!
2020-12-23 17:36:43 +08:00

21 lines
336 B
HTML

<div class="links">
{{ range $.Site.Menus.links }}
<a class="links__item" href="{{ .URL }}" rel="me">{{ .Name }}</a>
{{ end }}
</div>
<style>
.links {
margin: 1em auto;
display: flex;
flex-flow: row wrap;
justify-content: space-around;
}
.links__item {
padding: 0.25em;
font-size: 1.5em;
margin: auto 1.25em;
}
</style>