diff options
author | spf13 | 2014-05-23 16:44:37 -0400 |
---|---|---|
committer | spf13 | 2014-05-23 16:44:37 -0400 |
commit | 9989bda110761c73591d6aecfd2a57c50df9290f (patch) | |
tree | b316a27d5a069f11a09894a2bc7bbd00813ddbd4 | |
parent | 7e7e3ff3ab21767e1054da8841cda8015c4aabd6 (diff) | |
download | hyde-9989bda110761c73591d6aecfd2a57c50df9290f.tar.lz hyde-9989bda110761c73591d6aecfd2a57c50df9290f.tar.zst hyde-9989bda110761c73591d6aecfd2a57c50df9290f.zip |
renaming chrome to partials
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | layouts/_default/list.html | 4 | ||||
-rw-r--r-- | layouts/_default/single.html | 4 | ||||
-rw-r--r-- | layouts/index.html | 4 | ||||
-rw-r--r-- | layouts/partials/head.html (renamed from layouts/chrome/head.html) | 0 | ||||
-rw-r--r-- | layouts/partials/sidebar.html (renamed from layouts/chrome/sidebar.html) | 0 |
6 files changed, 6 insertions, 7 deletions
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** - <https://github.com/mdo> - <https://twitter.com/mdo> 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" . }} <body> -{{ template "theme/chrome/sidebar.html" . }} +{{ template "theme/partials/sidebar.html" . }} <div class="content container"> <ul class="posts"> 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" . }} <body> -{{ template "theme/chrome/sidebar.html" . }} +{{ template "theme/partials/sidebar.html" . }} <div class="content container"> <div class="post"> 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" . }} <body> -{{ template "theme/chrome/sidebar.html" . }} +{{ template "theme/partials/sidebar.html" . }} <div class="content container"> <div class="posts"> diff --git a/layouts/chrome/head.html b/layouts/partials/head.html index 4ddf0fa..4ddf0fa 100644 --- a/layouts/chrome/head.html +++ b/layouts/partials/head.html diff --git a/layouts/chrome/sidebar.html b/layouts/partials/sidebar.html index b199a6b..b199a6b 100644 --- a/layouts/chrome/sidebar.html +++ b/layouts/partials/sidebar.html |