aboutsummaryrefslogtreecommitdiff
path: root/layouts/pico8/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/pico8/list.html')
-rw-r--r--layouts/pico8/list.html50
1 files changed, 0 insertions, 50 deletions
diff --git a/layouts/pico8/list.html b/layouts/pico8/list.html
deleted file mode 100644
index 7158b4a..0000000
--- a/layouts/pico8/list.html
+++ /dev/null
@@ -1,50 +0,0 @@
-{{ define "main" }}
-<div class="row">
- <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 last-xs last-sm first-md first-lg sidebar">
- <article>
- <header>Навигатор</header>
- {{ partial "menu.html" (dict "menuID" "sections" "page" .) }}
- </article>
- </div>
- <div class="h-entry col-xs-12 col-sm-12 col-md-8 col-lg-8">
- {{ if .Title }}
- <article>
- <header>
- <div class="row between-xs">
- <span class="p-name"> {{ .Title }} </span>
- </div>
- </header>
- {{ .Content }}
- </article>
- {{ end }}
- {{ $paginator := .Paginate .Pages 7 }}
- {{ range $paginator.Pages }}
- <article>
- <header>
- <div class="row between-sm">
- <a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
- {{ if .Date }}
- <span>
- {{- .Date | time.Format (or .Site.Params.dateFormat.published "02 Jan 2006") -}}
- </span>
- {{ end }}
- </div>
- </header>
- {{ if .Description }}
- {{ .Description }}
- {{ else }}
- {{ .Summary }}
- {{ end }}
- <a href="{{ .RelPermalink }}">
- <img src="{{ .Params.Game }}" />
- </a>
- <footer>
- <a href="{{ .Params.Game }}">Скачать</a>
- </footer>
- </article>
- {{ end }}
- <nav>{{ partial "pagination.html" . }}</nav>
- </div>
-</div>
-
-{{ end }}