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

site-main-nav.html « common « products « partials « layouts - github.com/kishaningithub/hugo-shopping-product-catalogue-simple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4850294f88a170ed172ad29b1a2d34aa0d33aed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<nav class="navbar navbar-expand navbar-light justify-content-center">
    <ul class="navbar-nav">
        <li class="nav-item">
            <a class="nav-link" href="/products">All</a>
        </li>
        {{ range ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
        <li class="nav-item">
            <a class="nav-link" href="{{ .Permalink }}">{{ .Title | title }}</a>
        </li>
        {{ end }}
    </ul>
</nav>