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

github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthegreatluke <43050070+thegreatluke@users.noreply.github.com>2020-08-15 23:03:38 +0300
committerGitHub <noreply@github.com>2020-08-15 23:03:38 +0300
commitc9e378f2f871b4b0a6e2e59a2aa0af1c74a0d164 (patch)
tree2aa7bedf61852e5ee23e6fab1853181dba01c590 /layouts
parentc213b38c6fd171366b383967f17f2ebb7b2025f6 (diff)
Fix for issue 224 (#241)
Removed "singularize" from menu in layouts/partials/nav.html
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/nav.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/layouts/partials/nav.html b/layouts/partials/nav.html
index ec6cf57..75b36ff 100644
--- a/layouts/partials/nav.html
+++ b/layouts/partials/nav.html
@@ -64,7 +64,9 @@
{{ if $pageIsInProjects }}
{{ i18n "nav_backToSection" . }}
{{ else }}
- {{ .Title | singularize}}
+ <!-- fix-224 -->
+ {{ .Title }}
+ <!-- end fix-224 -->
{{ end }}
</a>
{{ end }}