This commit is contained in:
Roneo.org 2025-04-18 15:27:11 +09:00 committed by GitHub
commit f301d5f0bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 2 deletions

View file

@ -399,6 +399,16 @@ h6:hover .anchor {
text-align: left;
}
.paginav .name {
display: none;
}
@media screen and (min-width: 540px) {
.paginav .name {
display: block;
}
}
h1>a>svg {
display: inline;
}

View file

@ -5,14 +5,14 @@
<a class="prev" href="{{ .Permalink }}">
<span class="title">« {{ i18n "prev_page" }}</span>
<br>
<span>{{- .Name -}}</span>
<span class="name">{{- .Name -}}</span>
</a>
{{- end }}
{{- with $pages.Prev . }}
<a class="next" href="{{ .Permalink }}">
<span class="title">{{ i18n "next_page" }} »</span>
<br>
<span>{{- .Name -}}</span>
<span class="name">{{- .Name -}}</span>
</a>
{{- end }}
</nav>