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

nav.html « partials « layouts - github.com/softwareyoga/ronu-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b926865e3ec00ea281f520019d7f59e0e84fdd74 (plain)
1
2
3
4
5
6
7
8
9
10
<header>
<nav>
   <h1><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></h1>
   <ul>
    {{ range .Site.Menus.main }}
        <li><a href="{{ .URL | relLangURL }}">{{ .Name }}</a></li>
    {{ end }}
   </ul>
</nav>
</header>