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

nav.html « partials « layouts - github.com/curttimson/hugo-theme-dopetrope.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 260cc1c3e57888b5693591cd7a858a5056065389 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!-- Nav -->
<nav id="nav">
    <ul>
        <li class="current"><a href="{{ .Site.BaseURL }}">Home</a></li>
        <li>
            <a href="{{ .Site.BaseURL }}#portfolio">My Portfolio</a>
        </li>
        <li>
            <a href="{{ .Site.BaseURL }}{{ .Site.Params.Blog.foldername }}">{{ .Site.Params.Blog.title }}</a>
            <ul>
                {{ range first 5 (where .Site.Pages "Type" .Site.Params.Blog.foldername) }}
                <li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
                {{ end }}
            </ul>
        </li>
        <li><a href="{{ .Site.BaseURL }}#contact">Contact</a></li>
    </ul>
</nav>