🐛 Fixed image positioning on pages
closes https://github.com/TryGhost/Casper/issues/473 - added missing `<div class="post-content">` wrapper around `{{content}}`
This commit is contained in:
parent
89ea6c5872
commit
ecaf3d921f
1 changed files with 3 additions and 1 deletions
4
page.hbs
4
page.hbs
|
@ -27,7 +27,9 @@ into the {body} of the default.hbs template --}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
<section class="post-full-content">
|
<section class="post-full-content">
|
||||||
{{content}}
|
<div class="post-content">
|
||||||
|
{{content}}
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
|
|
Loading…
Reference in a new issue