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

weru
31.46.2025 5d52846dbd2134d9082f3483e2c7c91ced484415
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>