0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Fix HTML preview rendering on the main screen

closes #2904
- The `posts/post` template now takes its HTML from the post model instead of using the editor's markdown component
This commit is contained in:
David Arvelo 2014-06-07 14:19:42 -04:00
parent c3d49021da
commit 26199e56fa

View file

@ -4,8 +4,8 @@
<section class="content-preview-content">
<div class="wrapper">
<h1>{{title}}</h1>
{{gh-format-markdown markdown}}
<h1>{{{title}}}</h1>
{{{html}}}
</div>
</section>