1
0
This commit is contained in:
syui 2024-05-13 00:11:45 +09:00
parent b2b6e87a2b
commit fc93162a0a
Signed by: syui
GPG Key ID: 5417CFEBAD92DF56
2 changed files with 17 additions and 0 deletions

View File

@ -10,6 +10,7 @@
</div> </div>
</article> </article>
{{ partial "next.html" . }}
{{ partial "comment.html" . }} {{ partial "comment.html" . }}
</div> </div>

View File

@ -0,0 +1,16 @@
<nav id="article-nav">
<div class="previnsection">
<!--
{{ if .PrevInSection }}
<p><i class="fa-solid fa-circle-chevron-left"></i> <a href="{{ .PrevInSection.Permalink }}" id="article-nav-older" class="article-nav-link-wrap">
{{ .PrevInSection.Title }}
</a></p>
{{ end }}
-->
{{ if .NextInSection }}
<p><i class="fa-solid fa-circle-chevron-right"></i> <a href="{{ .NextInSection.Permalink }}" id="article-nav-newer" class="article-nav-link-wrap">
{{ .NextInSection.Title }}
</a></p>
{{ end }}
</div>
</nav>