Correct alignment bug for readmore
Container has to always be present otherwise grid doesn't position correctly
This commit is contained in:
parent
ccc8f03036
commit
5598592cfd
18
post.hbs
18
post.hbs
|
@ -39,16 +39,14 @@
|
||||||
|
|
||||||
<aside class="gh-readmore">
|
<aside class="gh-readmore">
|
||||||
<div class="gh-container">
|
<div class="gh-container">
|
||||||
{{#next_post}}
|
<div class="gh-readmore-next">
|
||||||
<div class="gh-readmore-next">
|
{{#next_post}}<a href="{{url}}">{{> "icons/arrow-left"}} <h4>{{title}}</h4></a>{{/next_post}}
|
||||||
<a href="{{url}}">{{> "icons/arrow-left"}} <h4>{{title}}</h4></a>
|
</div>
|
||||||
</div>
|
<div class="gh-readmore-prev">
|
||||||
{{/next_post}}
|
{{#prev_post}}<a href="{{url}}">
|
||||||
{{#prev_post}}
|
<h4>{{title}}</h4> {{> "icons/arrow-right"}}
|
||||||
<div class="gh-readmore-prev">
|
</a>{{/prev_post}}
|
||||||
<a href="{{url}}"><h4>{{title}}</h4> {{> "icons/arrow-right"}}</a>
|
</div>
|
||||||
</div>
|
|
||||||
{{/prev_post}}
|
|
||||||
</div>
|
</div>
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue