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

weru
31.34.2025 58b2d2b2cb07aecd69e2a538e6a3b550cd726b51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="pager{{ if .Next }}{{ else }} pager_lean{{ end }}">
  {{- $searchURL := "/search/" }}
  {{ with .NextInSection }}
    {{ if and (ne .RelPermalink $searchURL) (.InSection .) }}
    <div class="pager_item prev">
      <a href="{{ .Permalink }}" class="pager_link button" title="{{ .Title }}" rel="prev">
        <span class="pager_label">{{ .Title }}</span>
      </a>
    </div>
    {{ end }}
  {{ end }}
 
  {{ with .PrevInSection  }}
    {{ if and (ne .RelPermalink $searchURL) (.InSection .) }}
    <div class="pager_item next">
      <a href="{{ .Permalink }}" class="pager_link button" title="{{ .Title }}" rel="next">
        <span class="pager_label">{{ .Title }}</span>
      </a>
    </div>
    {{ end }}
  {{ end }}
</div>