Преглед на файлове

Use `partial` call to include partial templates

Replace `template` call with the `partial` call (new in Hugo v0.12)
for including partial templates
Anthony Fok преди 10 години
родител
ревизия
e1a4df05e8
променени са 3 файла, в които са добавени 6 реда и са изтрити 6 реда
  1. 2
    2
      layouts/_default/list.html
  2. 2
    2
      layouts/_default/single.html
  3. 2
    2
      layouts/index.html

+ 2
- 2
layouts/_default/list.html Целия файл

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