summaryrefslogtreecommitdiffstats
path: root/layouts/_default/list.html.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/list.html.html')
-rw-r--r--layouts/_default/list.html.html24
1 files changed, 0 insertions, 24 deletions
diff --git a/layouts/_default/list.html.html b/layouts/_default/list.html.html
deleted file mode 100644
index fc39714..0000000
--- a/layouts/_default/list.html.html
+++ /dev/null
@@ -1,24 +0,0 @@
-{{ define "main" }}
-
-<div class="articles">
- {{/* Render category name if any */}}
- {{ with .Title }}<h1 class="page-title">{{ . }}</h1>{{ end }}
-
- {{/* Render category content if any */}}
- {{ with .Content }}
- <div class="section-content">
- {{ .Content }}
- </div>
- {{ end }}
-
- {{/* Render posts list */}}
- <div class="post-list">
- {{ range .Paginator.Pages }}
- {{ .Render "teaser" }}
- {{ end }}
-
- {{- partial "pagination.html" . -}}
- </div>
-</div>
-
-{{ end }}