Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ThemeTony/hugo-theme-tony.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoraMrKim <““nn_201312@qq.comgit config --global user.email ““nn_201312@163.com>2020-05-03 14:54:39 +0300
committerDoraMrKim <““nn_201312@qq.comgit config --global user.email ““nn_201312@163.com>2020-05-03 14:54:39 +0300
commit27367f41826fbda98ef3fee81dbd64b0920fb138 (patch)
tree3013292c119f99000a44195e21004ff6cf461cce
parent129cfc27744b88f6fc7306ca0386b62afb768912 (diff)
fix some bugs0.01
-rw-r--r--layouts/partials/components/post/adjacent-posts.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/components/post/adjacent-posts.html b/layouts/partials/components/post/adjacent-posts.html
index 65cf04d..59a7aae 100644
--- a/layouts/partials/components/post/adjacent-posts.html
+++ b/layouts/partials/components/post/adjacent-posts.html
@@ -5,7 +5,7 @@
{{ if or $prev $next }}
{{ if $next }}
<div>
- <div class="index-div-next">
+ <div class="index-div">
<h4>上一篇</h4>
<p>
<a href="{{ $next.RelPermalink }}" rel="next">{{ printf `%s` $next.LinkTitle | safeHTML }}</a>
@@ -15,7 +15,7 @@
{{ end }}
{{ if $prev }}
<div>
- <div class="index-div-prev">
+ <div class="index-div">
<h4>下一篇</h4>
<p>
<a href="{{ $prev.RelPermalink }}" rel="prev">{{ printf `%s` $prev.LinkTitle | safeHTML }}</a>