🐛 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:
Kevin Ansfield 2018-08-21 17:47:42 +01:00
parent 89ea6c5872
commit ecaf3d921f
1 changed files with 3 additions and 1 deletions

View File

@ -27,7 +27,9 @@ into the {body} of the default.hbs template --}}
{{/if}}
<section class="post-full-content">
{{content}}
<div class="post-content">
{{content}}
</div>
</section>
</article>