Sfoglia il codice sorgente

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 anni fa
parent
commit
e1a4df05e8
3 ha cambiato i file con 6 aggiunte e 6 eliminazioni
  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 Vedi File

@@ -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 Vedi File

@@ -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 Vedi File

@@ -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">