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: e4c7fe70f8d9b9ce1d636aaaa8dbe748cc970c85 (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/" | absURL }}">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>