website/layouts/shortcodes/links.html

7 lines
225 B
HTML
Raw Normal View History

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