소스 검색

renaming chrome to partials

spf13 11 년 전
부모
커밋
9989bda110
6개의 변경된 파일6개의 추가작업 그리고 7개의 파일을 삭제
  1. 0
    1
      README.md
  2. 2
    2
      layouts/_default/list.html
  3. 2
    2
      layouts/_default/single.html
  4. 2
    2
      layouts/index.html
  5. 0
    0
      layouts/partials/head.html
  6. 0
    0
      layouts/partials/sidebar.html

+ 0
- 1
README.md 파일 보기

@@ -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 파일 보기

@@ -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 파일 보기

@@ -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 파일 보기

@@ -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 파일 보기


layouts/chrome/sidebar.html → layouts/partials/sidebar.html 파일 보기