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: 0ced22457a450ff77ab5b2cbed80414317faea6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!-- Nav -->
<nav id="nav">
    <ul>
        <li class="current"><a href="{{ .Site.BaseURL }}">Home</a></li>
        {{- $portfolioItems := where .Site.RegularPages "Type" .Site.Params.Portfolio.foldername }}
		{{- if $portfolioItems }}
        <li>
            <a href="{{ .Site.BaseURL }}#portfolio">{{ .Site.Params.Portfolio.title }}</a>
        </li>
        {{- end }}
        {{- $blogPosts := first 5 (where .Site.RegularPages "Type" .Site.Params.Blog.foldername) }}
        {{- if $blogPosts }}
        <li>
            <a href="{{ .Site.BaseURL }}{{ .Site.Params.Blog.foldername }}">{{ .Site.Params.Blog.title }}</a>
            <ul>
                {{- range $blogPosts }}
                <li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
                {{- end }}
            </ul>
        </li>
        {{- end }}
        <li><a href="{{ .Site.BaseURL }}#contact">Contact</a></li>
    </ul>
</nav>