summaryrefslogtreecommitdiffstats
path: root/layouts/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/list.html')
-rw-r--r--layouts/list.html17
1 files changed, 1 insertions, 16 deletions
diff --git a/layouts/list.html b/layouts/list.html
index 8c2a19f..43c0bc4 100644
--- a/layouts/list.html
+++ b/layouts/list.html
@@ -1,19 +1,4 @@
{{ define "main" }}
<h1 class="title">{{ .Title }}</h1>
- <table>
- <thead>
- <tr>
- <th>Date</th>
- <th>Title</th>
- </tr>
- </thead>
- <tbody>
- {{ range .Pages }}
- <tr>
- <td>{{ partial "date.html" .Date -}}</td>
- <td><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></td>
- </tr>
- {{ end }}
- </tbody>
- </table>
+ {{ partial "pages.html" . }}
{{ end }}