website/layouts/shortcodes/links.html
2020-11-07 06:16:12 +08:00

7 lines
219 B
HTML

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