Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/tummychow/lanyon-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Jung <tummychow@users.noreply.github.com>2014-09-15 03:34:33 +0400
committerStephen Jung <tummychow@users.noreply.github.com>2014-09-15 03:34:33 +0400
commit8f4d0996e7fcdba6595997cbcadd9518adfb35d9 (patch)
tree4b78b4c45ef9a784cee9ff92c434181afd8ee802
parent8a4c58baad23fe73db9a38b352b839e690d65088 (diff)
parentbef766588463634940f325f9a02a87dd44295e76 (diff)
Merge pull request #1 from byAtlas/master
Not really maintaining this anymore, and it looks fine to me, so I'll take your word for it. Thanks!
-rw-r--r--layouts/fixed/single.html4
-rw-r--r--layouts/index.html4
-rw-r--r--layouts/indexes/post.html4
-rw-r--r--layouts/partials/default_foot.html (renamed from layouts/chrome/default_foot.html)0
-rw-r--r--layouts/partials/default_head.html (renamed from layouts/chrome/default_head.html)4
-rw-r--r--layouts/partials/head.html (renamed from layouts/chrome/head.html)0
-rw-r--r--layouts/partials/sidebar.html (renamed from layouts/chrome/sidebar.html)0
-rw-r--r--layouts/post/single.html4
8 files changed, 10 insertions, 10 deletions
diff --git a/layouts/fixed/single.html b/layouts/fixed/single.html
index 7dc117a..c0c3d1c 100644
--- a/layouts/fixed/single.html
+++ b/layouts/fixed/single.html
@@ -1,8 +1,8 @@
-{{ template "chrome/default_head.html" . }}
+{{ partial "default_head.html" . }}
<div class="page">
<h1 class="page-title">{{ .Title }}</h1>
{{ .Content }}
</div>
-{{ template "chrome/default_foot.html" . }}
+{{ partial "default_foot.html" . }}
diff --git a/layouts/index.html b/layouts/index.html
index 3e5317a..babc481 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,4 +1,4 @@
-{{ template "chrome/default_head.html" . }}
+{{ partial "default_head.html" . }}
{{ $pagination := 5 }}
@@ -32,4 +32,4 @@
{{ end }}
</div>
-{{ template "chrome/default_foot.html" . }}
+{{ partial "default_foot.html" . }}
diff --git a/layouts/indexes/post.html b/layouts/indexes/post.html
index c37daff..c663721 100644
--- a/layouts/indexes/post.html
+++ b/layouts/indexes/post.html
@@ -1,4 +1,4 @@
-{{ template "chrome/default_head.html" . }}
+{{ partial "default_head.html" . }}
<div class="post">
<h1 class="post-title">{{ .Title }}</h1>
@@ -9,4 +9,4 @@
</ul>
</div>
-{{ template "chrome/default_foot.html" . }}
+{{ partial "default_foot.html" . }}
diff --git a/layouts/chrome/default_foot.html b/layouts/partials/default_foot.html
index 0780e14..0780e14 100644
--- a/layouts/chrome/default_foot.html
+++ b/layouts/partials/default_foot.html
diff --git a/layouts/chrome/default_head.html b/layouts/partials/default_head.html
index 4ccac8d..240ab14 100644
--- a/layouts/chrome/default_head.html
+++ b/layouts/partials/default_head.html
@@ -1,11 +1,11 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
- {{ template "chrome/head.html" . }}
+ {{ partial "head.html" . }}
<body>
- {{ template "chrome/sidebar.html" . }}
+ {{ partial "sidebar.html" . }}
<!-- Wrap is the content to shift when toggling the sidebar. We wrap the
content to avoid any CSS collisions with our real content. -->
diff --git a/layouts/chrome/head.html b/layouts/partials/head.html
index 1b43d6a..1b43d6a 100644
--- a/layouts/chrome/head.html
+++ b/layouts/partials/head.html
diff --git a/layouts/chrome/sidebar.html b/layouts/partials/sidebar.html
index 5bd990d..5bd990d 100644
--- a/layouts/chrome/sidebar.html
+++ b/layouts/partials/sidebar.html
diff --git a/layouts/post/single.html b/layouts/post/single.html
index 6bd2a4a..526ed57 100644
--- a/layouts/post/single.html
+++ b/layouts/post/single.html
@@ -1,4 +1,4 @@
-{{ template "chrome/default_head.html" . }}
+{{ partial "default_head.html" . }}
<div class="post">
<h1 class="post-title">{{ .Title }}</h1>
@@ -6,4 +6,4 @@
{{ .Content }}
</div>
-{{ template "chrome/default_foot.html" . }}
+{{ partial "default_foot.html" . }}