Procházet zdrojové kódy

fix(project): projects not listing child pages

Fix #800
George Cushen před 6 roky
rodič
revize
4018752dc8
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      layouts/project/single.html

+ 2 - 1
layouts/project/single.html

@@ -20,7 +20,8 @@
     {{ $project = .File.TranslationBaseName }}
     {{ end }}
     {{ if eq $project "index" }}{{/* Check if using dir-based page bundles. */}}
-    {{ $project = delimit (last 1 (split (substr .Dir 0 -1) "/")) "" }}
+    {{ $dir_sep := substr .Dir -1 1 }}
+    {{ $project = delimit (last 1 (split (substr .Dir 0 -1) $dir_sep)) "" }}
     {{ end }}
     {{ $project_path := .RelPermalink }}