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

github.com/yoshiharuyamashita/blackburn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoshiharu Yamashita <yoshiharu.yamashita@outlook.com>2016-03-26 13:14:29 +0300
committerYoshiharu Yamashita <yoshiharu.yamashita@outlook.com>2016-03-26 13:14:29 +0300
commit2bc9545a13c4f314a6e4f9cb5c1ab898c6df4ebb (patch)
treed8d72375522a8a6290493f9ed4d6db34f5cfad5e /layouts
parent21e0fff4bbab360d21e7d4c625354f4d82c77bf0 (diff)
Fix display of prev next when narrowing window
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/prev_next_post.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/prev_next_post.html b/layouts/partials/prev_next_post.html
index 6b08420..6b326ed 100644
--- a/layouts/partials/prev_next_post.html
+++ b/layouts/partials/prev_next_post.html
@@ -1,13 +1,13 @@
{{ if or (.Prev) (.Next) }}
<div class="prev-next-post pure-g">
- <div class="pure-u-1 pure-u-md-1-2">
+ <div class="pure-u-1-2">
{{ if .PrevInSection }}
<nav class="prev">
<a href="{{ .PrevInSection.Permalink }}"><i class="fa fa-arrow-circle-left fa-fw fa-lg"></i>{{ .PrevInSection.Title }}</a>
</nav>
{{ end }}
</div>
- <div class="pure-u-1 pure-u-md-1-2">
+ <div class="pure-u-1-2">
{{ if .NextInSection }}
<nav class="next">
<a href="{{ .NextInSection.Permalink }}">{{ .NextInSection.Title }}<i class="fa fa-arrow-circle-right fa-fw fa-lg"></i></a>