Welcome to mirror list, hosted at ThFree Co, Russian Federation.

footer.html « partials « layouts - github.com/leonstafford/accessible-minimalism-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02221f03fccbff46266ae8c9f6ebc9205953093a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<p><a name="nav-menu" id="nav-menu"><strong>Site menu</strong></a></p>

<ul>
    {{ range .Site.Menus.main }}
    <li>
      <a href="{{ .URL }}">
      {{ $text := print .Name | safeHTML }}
      {{ $text }}
      </a>
    </li>
    {{ end }}
</ul>

<p><a href="#">Back to top</a></p>