From efc98a3b1fee0069a162801dbdfd8d0694c7a75e Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Tue, 2 Sep 2014 13:05:20 -0600 Subject: Update example blog to Hugo v0.12 conventions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Convert config.yaml to config.toml to follow what "hugo new site /path/to/site" generates - Rename layouts/chrome to layouts/partials - Convert "template" calls to "partial" calls - Minor revisions to the text in example content - Upgrade Bootswatch Yeti theme (3.1.1+1 → to 3.2.0+3) - Upgrade Font Awesome (4.0.3 → 4.2.0) - Upgrade jQuery (1.11.0 → 1.11.1) --- examples/blog/layouts/indexes/post.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'examples/blog/layouts/indexes/post.html') diff --git a/examples/blog/layouts/indexes/post.html b/examples/blog/layouts/indexes/post.html index bd8d90d66..b3a835ccd 100644 --- a/examples/blog/layouts/indexes/post.html +++ b/examples/blog/layouts/indexes/post.html @@ -1,6 +1,6 @@ -{{ template "chrome/header.html" . }} +{{ partial "header.html" . }} -{{ template "chrome/navbar.html" . }} +{{ partial "navbar.html" . }}
@@ -16,9 +16,9 @@
- {{ template "chrome/menu.html" . }} + {{ partial "menu.html" . }}
-{{ template "chrome/footer.copyright.html" . }} +{{ partial "footer.copyright.html" . }}
-{{ template "chrome/footer.html" . }} \ No newline at end of file +{{ partial "footer.html" . }} -- cgit v1.2.3