50 lines
1.7 KiB
HTML
50 lines
1.7 KiB
HTML
{{ 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 }}
|