From 9989bda110761c73591d6aecfd2a57c50df9290f Mon Sep 17 00:00:00 2001 From: spf13 Date: Fri, 23 May 2014 16:44:37 -0400 Subject: renaming chrome to partials --- README.md | 1 - layouts/_default/list.html | 4 ++-- layouts/_default/single.html | 4 ++-- layouts/chrome/head.html | 24 ------------------------ layouts/chrome/sidebar.html | 19 ------------------- layouts/index.html | 4 ++-- layouts/partials/head.html | 24 ++++++++++++++++++++++++ layouts/partials/sidebar.html | 19 +++++++++++++++++++ 8 files changed, 49 insertions(+), 50 deletions(-) delete mode 100644 layouts/chrome/head.html delete mode 100644 layouts/chrome/sidebar.html create mode 100644 layouts/partials/head.html create mode 100644 layouts/partials/sidebar.html 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/chrome/head.html b/layouts/chrome/head.html deleted file mode 100644 index 4ddf0fa..0000000 --- a/layouts/chrome/head.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - {{ .Title }} · {{ .Site.Title }} - - - - - - - - - - - - - - diff --git a/layouts/chrome/sidebar.html b/layouts/chrome/sidebar.html deleted file mode 100644 index b199a6b..0000000 --- a/layouts/chrome/sidebar.html +++ /dev/null @@ -1,19 +0,0 @@ - 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/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000..4ddf0fa --- /dev/null +++ b/layouts/partials/head.html @@ -0,0 +1,24 @@ + + + + + + + + + + {{ .Title }} · {{ .Site.Title }} + + + + + + + + + + + + + + diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html new file mode 100644 index 0000000..b199a6b --- /dev/null +++ b/layouts/partials/sidebar.html @@ -0,0 +1,19 @@ + -- cgit 1.4.1