Welcome to mirror list, hosted at ThFree Co, Russian Federation.

list.html « _default « layouts - github.com/mazgi/hugo-theme-techlog-simple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 325c33544e3c3b240893a978a5d6d6e76fedc922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{{ partial "header.html" . }}
<div class="row">
  <div class="col-lg-9">
    {{ $paginator := .Paginate ( .Data.Pages ) }}
    {{ range $idx, $page := $paginator.Pages }}
    <article>
      <div class="row">
        <h1><a href="{{ .RelPermalink}}">{{ .Title }}</a></h1>
      </div>
      {{ .Content }}
    </article>
    {{ if lt (add $idx 1) (len $paginator.Pages) }}
    <hr/>
    {{ end }}
    {{ end }}
  </div>
  <div class="col-lg-3">
    <ul>
      {{ range .Data.Pages }}
      <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
      {{ end }}
    </ul>
  </div>
</div>
{{ partial "footer.html" . }}