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

github.com/cntrump/hugo-notepadium.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvvveiii <cntrump@gmail.com>2020-06-04 15:55:41 +0300
committervvveiii <cntrump@gmail.com>2020-06-04 15:55:41 +0300
commit281773bcd78f28a01bf1cef2fd51aaa7786439ca (patch)
tree9c061387094d936ef606b1b34f3e7f518bae2a51 /layouts
parent8956738e8fdff29685a36cf22a4708e75a0e66a0 (diff)
Remove useless CSS class.
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/article-bottom-navigation.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/article-bottom-navigation.html b/layouts/partials/article-bottom-navigation.html
index 07ed77c..c27b30d 100644
--- a/layouts/partials/article-bottom-navigation.html
+++ b/layouts/partials/article-bottom-navigation.html
@@ -1,10 +1,10 @@
{{- if and (not (eq .Params.single true)) (or .PrevInSection .NextInSection) -}}
<section class="article navigation">
{{- with .NextInSection -}}
- <p><a class="link" href="{{- .RelPermalink -}}"><span class="li iconfont icon-article"></span>{{- .Title | safeHTML -}}</a></p>
+ <p><a class="link" href="{{- .RelPermalink -}}"><span class="iconfont icon-article"></span>{{- .Title | safeHTML -}}</a></p>
{{- end -}}
{{- with .PrevInSection -}}
- <p><a class="link" href="{{- .RelPermalink -}}"><span class="li iconfont icon-article"></span>{{- .Title | safeHTML -}}</a></p>
+ <p><a class="link" href="{{- .RelPermalink -}}"><span class="iconfont icon-article"></span>{{- .Title | safeHTML -}}</a></p>
{{- end -}}
</section>
{{- end -}} \ No newline at end of file