From 9989bda110761c73591d6aecfd2a57c50df9290f Mon Sep 17 00:00:00 2001 From: spf13 Date: Fri, 23 May 2014 16:44:37 -0400 Subject: [PATCH] renaming chrome to partials --- README.md | 1 - layouts/_default/list.html | 4 ++-- layouts/_default/single.html | 4 ++-- layouts/index.html | 4 ++-- layouts/{chrome => partials}/head.html | 0 layouts/{chrome => partials}/sidebar.html | 0 6 files changed, 6 insertions(+), 7 deletions(-) rename layouts/{chrome => partials}/head.html (100%) rename layouts/{chrome => partials}/sidebar.html (100%) 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 -- 2.43.0