diff options
Diffstat (limited to 'examples/blog/layouts/index.html')
-rw-r--r-- | examples/blog/layouts/index.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/blog/layouts/index.html b/examples/blog/layouts/index.html index 5eb216127..a69100409 100644 --- a/examples/blog/layouts/index.html +++ b/examples/blog/layouts/index.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"> @@ -11,9 +11,9 @@ <!-- Sidebar --> <div class="col-md-3"> - {{ 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" . }} |