🐛 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
父节点 89ea6c5872
当前提交 ecaf3d921f
共有 1 个文件被更改,包括 3 次插入1 次删除

查看文件

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