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

github.com/curttimson/hugo-theme-dopetrope.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/nav.html')
-rw-r--r--layouts/partials/nav.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/layouts/partials/nav.html b/layouts/partials/nav.html
index 0819e07..0ced224 100644
--- a/layouts/partials/nav.html
+++ b/layouts/partials/nav.html
@@ -2,23 +2,23 @@
<nav id="nav">
<ul>
<li class="current"><a href="{{ .Site.BaseURL }}">Home</a></li>
- {{ $portfolioItems := where .Site.Pages "Type" .Site.Params.Portfolio.foldername }}
- {{ if $portfolioItems }}
+ {{- $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.Pages "Type" .Site.Params.Blog.foldername) }}
- {{ if $blogPosts }}
+ {{- 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 }}
+ {{- range $blogPosts }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
- {{ end }}
+ {{- end }}
</ul>
</li>
- {{ end }}
+ {{- end }}
<li><a href="{{ .Site.BaseURL }}#contact">Contact</a></li>
</ul>
</nav> \ No newline at end of file