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

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'examples/blog/layouts/post/single.html')
-rw-r--r--examples/blog/layouts/post/single.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/blog/layouts/post/single.html b/examples/blog/layouts/post/single.html
index 05ecc53c7..4b792ebe2 100644
--- a/examples/blog/layouts/post/single.html
+++ b/examples/blog/layouts/post/single.html
@@ -1,6 +1,6 @@
-{{ template "chrome/header.html" . }}
+{{ partial "header.html" . }}
<body>
-{{ template "chrome/navbar.html" . }}
+{{ partial "navbar.html" . }}
<div class="container">
<div class="row">
<div class="col-md-9">
@@ -27,9 +27,9 @@
<strong>Tags</strong><br>
{{ range .Params.tags }}<a class="label label-default" href="/tags/{{ . | urlize }}">{{ . }}</a> {{ end }}
</div>
- {{ template "chrome/menu.html" . }}
+ {{ partial "menu.html" . }}
</div>
</div>
-{{ template "chrome/footer.copyright.html" . }}
+{{ partial "footer.copyright.html" . }}
</div>
-{{ template "chrome/footer.html" . }} \ No newline at end of file
+{{ partial "footer.html" . }}