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:
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>