post-pagination.html 538 字节
Newer Older
Miykael_xxm's avatar
init  
Miykael_xxm 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<div class="pagination">
  {{if .PrevInSection}}
    <a class="pagination__item" href="{{.PrevInSection.Permalink}}">
        <span class="pagination__label">{{ i18n "prev_post" }}</span>
        <span class="pagination__title">{{.PrevInSection.Title}}</span>
    </a>
  {{end}}

  {{if .NextInSection}}
    <a class="pagination__item" href="{{.NextInSection.Permalink}}">
      <span class="pagination__label">{{ i18n "next_post" }}</span>
      <span class="pagination__title" >{{.NextInSection.Title}}</span>
    </a>
  {{end}}
</div>