Skip to content

Commit

Permalink
add rel attributes
Browse files Browse the repository at this point in the history
Signed-off-by: weru <[email protected]>
  • Loading branch information
onweru committed May 31, 2021
1 parent dbe5260 commit 8193501
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions layouts/partials/pager.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down

0 comments on commit 8193501

Please sign in to comment.