From: spf13 Date: Fri, 23 May 2014 20:44:37 +0000 (-0400) Subject: renaming chrome to partials X-Git-Url: http://njoseph.me/gitweb/hyde.git/commitdiff_plain/9989bda110761c73591d6aecfd2a57c50df9290f renaming chrome to partials --- diff --git a/README.md b/README.md index 6f0a8b2..2502796 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,6 @@ Hyde's page orientation can be reversed with a single class. ``` ## Author - **Mark Otto** - - diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 017c932..f93e73b 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,7 +1,7 @@ -{{ template "theme/chrome/head.html" . }} +{{ template "theme/partials/head.html" . }} -{{ template "theme/chrome/sidebar.html" . }} +{{ template "theme/partials/sidebar.html" . }}
    diff --git a/layouts/_default/single.html b/layouts/_default/single.html index a6f29b1..e0b2f94 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,7 +1,7 @@ -{{ template "theme/chrome/head.html" . }} +{{ template "theme/partials/head.html" . }} -{{ template "theme/chrome/sidebar.html" . }} +{{ template "theme/partials/sidebar.html" . }}
    diff --git a/layouts/index.html b/layouts/index.html index cb75c3b..320b975 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,7 +1,7 @@ -{{ template "theme/chrome/head.html" . }} +{{ template "theme/partials/head.html" . }} -{{ template "theme/chrome/sidebar.html" . }} +{{ template "theme/partials/sidebar.html" . }}
    diff --git a/layouts/chrome/head.html b/layouts/partials/head.html similarity index 100% rename from layouts/chrome/head.html rename to layouts/partials/head.html diff --git a/layouts/chrome/sidebar.html b/layouts/partials/sidebar.html similarity index 100% rename from layouts/chrome/sidebar.html rename to layouts/partials/sidebar.html