mirror of https://github.com/onweru/compose.git

one
29.52.2020 ca38018462329f81c7c5539ee9402b4a89ef1a12
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="grid-auto">
  <div>
    {{- partial "sidebar" . }}
  </div>
  <section class="content">
    <h1>{{ .Title }}</h1>
    {{- .Content }}
    <div class="pager">
      {{- with .Next }}
      <a href="{{ .Permalink }}" id="prev"><< {{ .Title }}</a>
      {{ end }}
      {{- with .Prev }}
      <a href="{{ .Permalink }}" id="next">{{ .Title }} >></a>
      {{- end }}
    </div>
  </section>
</div>