mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-12 16:29:44 +00:00
solves #149
This commit is contained in:
parent
76123d6853
commit
87d371f468
1 changed files with 18 additions and 35 deletions
|
@ -41,46 +41,29 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ with .Site.GetPage "/home" }}
|
{{ with .Site.GetPage "/home" }}
|
||||||
{{ range sort (.Resources.ByType "page") "Params.weight" }}
|
{{ $pages := .Resources.ByType "page" }}
|
||||||
|
|
||||||
|
{{ with .Site.GetPage "/blog" }}
|
||||||
|
{{ $pages = $pages | append . }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ with .Site.GetPage "/projects" }}
|
||||||
|
{{ $pages = $pages | append . }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ range sort $pages "Params.weight" }}
|
||||||
{{ if ne .Name "contact.md" }}
|
{{ if ne .Name "contact.md" }}
|
||||||
|
{{ if eq .File.Dir "projects/" }}
|
||||||
|
<!-- Now for some cool projects -->
|
||||||
|
<a class="navbar-item" href="{{ printf "/#%s" ( .Title | urlize) | relLangURL }}">{{ .Title }}</a>
|
||||||
|
{{ else if eq .File.Dir "blog/" }}
|
||||||
|
<!-- Let`s show some blog posts -->
|
||||||
|
<a class="navbar-item" href="{{ printf "/#%s" ( .Title | urlize) | relLangURL }}">{{ .Title }}</a>
|
||||||
|
{{ else }}
|
||||||
<a class="navbar-item" href="{{ if $isHome }}#{{ .File.TranslationBaseName }}{{ else }}{{ printf "/#%s" (.File.TranslationBaseName | urlize) | relLangURL }}{{ end }}">{{ .Title }}</a>
|
<a class="navbar-item" href="{{ if $isHome }}#{{ .File.TranslationBaseName }}{{ else }}{{ printf "/#%s" (.File.TranslationBaseName | urlize) | relLangURL }}{{ end }}">{{ .Title }}</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ $pageIsInProjects := eq .Page.Section "projects"}}
|
|
||||||
{{ if not (and $pageIsInProjects (eq .Page.Kind "section")) }}
|
|
||||||
{{ with .Site.GetPage "/projects" }}
|
|
||||||
{{ $totalProjects := (len .Pages) }}
|
|
||||||
{{ if $isHome }}
|
|
||||||
<a class="navbar-item" href="{{ printf "#%s" (.Title | urlize) }}">{{ .Title }}</a>
|
|
||||||
{{ else }}
|
|
||||||
<a class="navbar-item" href="{{ .Permalink }}">
|
|
||||||
{{ if $pageIsInProjects }}
|
|
||||||
{{ i18n "nav_backToSection" . }}
|
|
||||||
{{ else }}
|
|
||||||
{{ .Title }}
|
|
||||||
{{ end }}
|
|
||||||
</a>
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
{{ $pageIsInBlog := eq .Page.Section "blog"}}
|
|
||||||
{{ if not (and $pageIsInBlog (eq .Page.Kind "section")) }}
|
|
||||||
{{ with .Site.GetPage "/blog" }}
|
|
||||||
{{ if $isHome }}
|
|
||||||
<a class="navbar-item" href="{{ printf "#%s" (.Title | urlize) }}">{{ .Title }}</a>
|
|
||||||
{{ else }}
|
|
||||||
<a class="navbar-item" href="{{ .Permalink }}">
|
|
||||||
{{ if $pageIsInBlog }}
|
|
||||||
{{ i18n "nav_backToSection" . }}
|
|
||||||
{{ else }}
|
|
||||||
{{ .Title | singularize}}
|
|
||||||
{{ end }}
|
|
||||||
</a>
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ with .Site.GetPage "/home" }}
|
{{ with .Site.GetPage "/home" }}
|
||||||
|
|
Loading…
Reference in a new issue