summaryrefslogtreecommitdiff
path: root/layouts/home.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/home.html')
-rw-r--r--layouts/home.html19
1 files changed, 0 insertions, 19 deletions
diff --git a/layouts/home.html b/layouts/home.html
deleted file mode 100644
index 2dabf5b..0000000
--- a/layouts/home.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{{ define "main" }}
-<div class="body">
- <h2>{{ .Title }}</h2>
- {{ .Content }}
-</div>
-<div class="list">
- <h2>Recent posts</h2>
- <ul>
- {{ $pages := .Pages }}
- {{ $pages = .Site.RegularPages }}
- {{ range (where $pages "Section" "!=" "") }}
- <li>
- <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
- <span class="date"> Published on {{ .Date.Format "2006/01/02" }}</span>
- </li>
- {{ end }}
- </ul>
-</div>
-{{ end }}