website/layouts/shortcodes/links.html

7 lines
219 B
HTML
Raw Normal View History

2020-11-06 22:16:12 +00:00
<div style="margin: 1em auto; display: flex; flex-flow: row wrap; justify-content: space-around;">
2020-11-06 16:16:16 +00:00
{{ range $.Site.Menus.links }}
2020-11-06 22:16:12 +00:00
<a style="font-size: 1.5em" href="{{ .URL }}" rel="me">{{ .Name }}</a>
2020-11-06 16:16:16 +00:00
{{ end }}
2020-11-06 22:16:12 +00:00
</div>
2020-11-06 16:16:16 +00:00