Source code of my website
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

♻️ : replace inline styles with <b> tags in navigation links

+2 -2
+2 -2
layouts/_partials/post/navigation.html
··· 25 25 </p> 26 26 {{ end }} 27 27 {{ if .PrevInSection }} 28 - <a class="previous-post" href="{{ .PrevInSection.Permalink }}"><span style="font-weight:bold;">{{ i18n "previous" }}</span><br>{{ .PrevInSection.Title | truncate 50 "..."}}</a> 28 + <a class="previous-post" href="{{ .PrevInSection.Permalink }}"><b>{{ i18n "previous" }}</b><br>{{ .PrevInSection.Title | truncate 50 "..."}}</a> 29 29 {{ end }} 30 30 {{ if .NextInSection }} 31 31 <div class="next-post"> 32 - <a href="{{ .NextInSection.Permalink }}"><span style="font-weight:bold;">{{ i18n "next" }}</span><br>{{ .NextInSection.Title | truncate 50 "..." }}</a> 32 + <a href="{{ .NextInSection.Permalink }}"><b>{{ i18n "next" }}</b><br>{{ .NextInSection.Title | truncate 50 "..." }}</a> 33 33 </div> 34 34 {{ end }} 35 35 </div>