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

7 lines
225 B
HTML

<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>