mirror of
https://github.com/trwnh/hugo-theme-paradox.git
synced 2024-11-14 23:41:20 +00:00
13 lines
220 B
HTML
13 lines
220 B
HTML
|
<nav class="social-nav">
|
||
|
<ul class="menu">
|
||
|
{{ $currentPage := . }}
|
||
|
{{ range .Site.Menus.social }}
|
||
|
<li
|
||
|
class='{{ .Identifier }}'>
|
||
|
<a href="{{ .URL }}">
|
||
|
{{ .Pre }}
|
||
|
</a>
|
||
|
</li>
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
</nav>
|