開発ログ:ライフログ部分に前後の記事へのリンクを追加。タグを角丸ボタンに

ちまちまとテーマを直しています。今日はライフログ部分の個別記事に、前後の記事へのリンクを PrevInSection / NextInSection で追加しています。
<div class="d-flex w-100 p-3 justify-content-between">
{{ if .PrevInSection }}
<a href="{{ .PrevInSection.Permalink }}" class="pagination-item pagination-item--prev">
« 前のログ
</a>
{{ end }}
{{ if .NextInSection }}
<a href="{{ .NextInSection.Permalink }}" class="pagination-item pagination-item--next">
次のログ »
</a>
{{ end }}
</div>
また、タグを角丸のボタン表示にしておきました。ライブラリーのタグとカテゴリは別になっているので、それはまた後日。
次はサイドバーに手を入れないとですね。