about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--layouts/_default/list.html4
-rw-r--r--layouts/_default/single.html4
-rw-r--r--layouts/index.html4
3 files changed, 6 insertions, 6 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index dd466d8..7bfc824 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -1,4 +1,4 @@
-{{ template "theme/partials/head.html" . }}
+{{ partial "head.html" . }}
 	<body class="theme-base-0b layout-reverse" itemscope itemtype="http://schema.org/Blog">
 		<main class="content container" role="main">
 			<h1 class="page-title">{{ .Title }}</h1>
@@ -12,6 +12,6 @@
 				{{ end }}
 			</ul>
 		</main>
-{{ template "theme/partials/sidebar.html" . }}
+{{ partial "sidebar.html" . }}
 	</body>
 </html>
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 98435c5..39a71c2 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -1,4 +1,4 @@
-{{ template "theme/partials/head.html" . }}
+{{ partial "head.html" . }}
 	<body class="theme-base-0b layout-reverse" itemscope itemtype="http://schema.org/BlogPosting">
 		<main class="content container" role="main">
 			<article class="post">
@@ -11,6 +11,6 @@
 				</main>
 			</article>
 		</main>
-{{ template "theme/partials/sidebar.html" . }}
+{{ partial "sidebar.html" . }}
 	</body>
 </html>
diff --git a/layouts/index.html b/layouts/index.html
index 854bab2..22c6e32 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,4 +1,4 @@
-{{ template "theme/partials/head.html" . }}
+{{ partial "head.html" . }}
 	<body class="theme-base-0b layout-reverse" itemscope itemtype="http://schema.org/Blog">
 		<main class="content container" role="main">
 			<section class="categories">
@@ -23,6 +23,6 @@
 				</ul>
 			</section>
 		</main>
-{{ template "theme/partials/sidebar.html" . }}
+{{ partial "sidebar.html" . }}
 	</body>
 </html>