Browse Source

renaming chrome to partials

spf13 11 years ago
parent
commit
9989bda110

+ 0
- 1
README.md View File

@@ -83,7 +83,6 @@ Hyde's page orientation can be reversed with a single class.
83 83
 ```
84 84
 
85 85
 ## Author
86
-
87 86
 **Mark Otto**
88 87
 - <https://github.com/mdo>
89 88
 - <https://twitter.com/mdo>

+ 2
- 2
layouts/_default/list.html View File

@@ -1,7 +1,7 @@
1
-{{ template "theme/chrome/head.html" . }}
1
+{{ template "theme/partials/head.html" . }}
2 2
 <body>
3 3
 
4
-{{ template "theme/chrome/sidebar.html" . }}
4
+{{ template "theme/partials/sidebar.html" . }}
5 5
 
6 6
     <div class="content container">
7 7
   <ul class="posts">

+ 2
- 2
layouts/_default/single.html View File

@@ -1,7 +1,7 @@
1
-{{ template "theme/chrome/head.html" . }}
1
+{{ template "theme/partials/head.html" . }}
2 2
 <body>
3 3
 
4
-{{ template "theme/chrome/sidebar.html" . }}
4
+{{ template "theme/partials/sidebar.html" . }}
5 5
 
6 6
     <div class="content container">
7 7
 <div class="post">

+ 2
- 2
layouts/index.html View File

@@ -1,7 +1,7 @@
1
-{{ template "theme/chrome/head.html" . }}
1
+{{ template "theme/partials/head.html" . }}
2 2
 <body>
3 3
 
4
-{{ template "theme/chrome/sidebar.html" . }}
4
+{{ template "theme/partials/sidebar.html" . }}
5 5
 
6 6
     <div class="content container">
7 7
 <div class="posts">

layouts/chrome/head.html → layouts/partials/head.html View File


layouts/chrome/sidebar.html → layouts/partials/sidebar.html View File