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

weru
31.48.2021 81935019db066dd5040c23672e8c28a83860e824
add rel attributes

Signed-off-by: weru <fromweru@gmail.com>
1 files modified
4 ■■■■ changed files
layouts/partials/pager.html 4 ●●●● patch | view | raw | blame | history
layouts/partials/pager.html
@@ -2,7 +2,7 @@
  {{ with .Site.RegularPages.Next . }}
  <div class="pager_item prev">
    <!-- <span class="pager_meta">PREVIOUS</span> -->
    <a href="{{ .Permalink }}" class="pager_link button" title="{{ .Title }}">
    <a href="{{ .Permalink }}" class="pager_link button" title="{{ .Title }}" rel="prev">
      <span class="pager_label">{{ .Title }}</span>
    </a>
  </div>
@@ -11,7 +11,7 @@
  {{ with .Site.RegularPages.Prev . }}
  <div class="pager_item next">
    <!-- <span class="pager_meta">NEXT</span> -->
    <a href="{{ .Permalink }}" class="pager_link button" title="{{ .Title }}">
    <a href="{{ .Permalink }}" class="pager_link button" title="{{ .Title }}" rel="next">
      <span class="pager_label">{{ .Title }}</span>
    </a>
  </div>