Bläddra i källkod

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 år sedan
förälder
incheckning
e1a4df05e8
3 ändrade filer med 6 tillägg och 6 borttagningar
  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 Visa fil

@@ -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 Visa fil

@@ -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 Visa fil

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