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">
|
||||
<div class="gh-container">
|
||||
{{#next_post}}
|
||||
<div class="gh-readmore-next">
|
||||
<a href="{{url}}">{{> "icons/arrow-left"}} <h4>{{title}}</h4></a>
|
||||
</div>
|
||||
{{/next_post}}
|
||||
{{#prev_post}}
|
||||
<div class="gh-readmore-prev">
|
||||
<a href="{{url}}"><h4>{{title}}</h4> {{> "icons/arrow-right"}}</a>
|
||||
</div>
|
||||
{{/prev_post}}
|
||||
<div class="gh-readmore-next">
|
||||
{{#next_post}}<a href="{{url}}">{{> "icons/arrow-left"}} <h4>{{title}}</h4></a>{{/next_post}}
|
||||
</div>
|
||||
<div class="gh-readmore-prev">
|
||||
{{#prev_post}}<a href="{{url}}">
|
||||
<h4>{{title}}</h4> {{> "icons/arrow-right"}}
|
||||
</a>{{/prev_post}}
|
||||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
|
|
Loading…
Reference in New Issue