diff options
Diffstat (limited to 'layouts/pico8/list.html')
-rw-r--r-- | layouts/pico8/list.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/layouts/pico8/list.html b/layouts/pico8/list.html new file mode 100644 index 0000000..7158b4a --- /dev/null +++ b/layouts/pico8/list.html @@ -0,0 +1,50 @@ +{{ 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 }} |