aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/mypaper/layouts/_default/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/mypaper/layouts/_default/list.html')
-rw-r--r--themes/mypaper/layouts/_default/list.html45
1 files changed, 0 insertions, 45 deletions
diff --git a/themes/mypaper/layouts/_default/list.html b/themes/mypaper/layouts/_default/list.html
deleted file mode 100644
index 053951f..0000000
--- a/themes/mypaper/layouts/_default/list.html
+++ /dev/null
@@ -1,45 +0,0 @@
-{{- partial "header.html" . }}
-
-{{- $scope := .Site }}
-{{- if .Title }}
-<header class="page-header"><h1>{{ .Title }}</h1></header>{{ $scope = . }}
-{{ end }}
-
-{{- $paginator := .Paginate (where $scope.RegularPages ".Params.type" "!=" "page") }}
-
-{{- range $index, $page := $paginator.Pages }}
-
-{{- $class := "post-entry" }}
-{{- if .Data.Term }}
-{{- $class = "post-entry tag-entry" }}
-{{- end }}
-<article class="{{ $class }}">
- <header class="entry-header">
- <h2>{{ .Title }}</h2>
- </header>
- <section class="entry-content">
- <p>{{ .Summary | plainify | htmlUnescape }}</p>
- </section>
- <footer class="entry-footer">
- {{- $date := .Date.Format "2006-01-02" }}
- {{- $lastmod := .Lastmod.Format "2006-01-02" }}
- Posted on <time>{{ $date }}</time>{{ if ne $date $lastmod }}, updated on <time>{{ $lastmod }}</time>{{ end }}
- </footer>
- <a class="entry-link" href="{{ .Permalink }}"></a>
-</article>
-{{- end }}
-
-{{- if gt $paginator.TotalPages 1 }}
-<footer class="page-footer">
- <nav class="pagination">
- {{- if $paginator.HasPrev }}
- <a class="prev" href="{{ $paginator.Prev.URL }}">← {{ i18n "prev_page" }}</a>
- {{- end }}
- {{- if $paginator.HasNext }}
- <a class="next" href="{{ $paginator.Next.URL }}">{{ i18n "next_page" }} →</a>
- {{- end }}
- </nav>
-</footer>
-{{- end }}
-
-{{- partial "footer.html" . }}