mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 03:12:54 +03:00
3b9f465635
closes #5379, refs #3964 - add 'Markdown Help' title to markdown logo - add 'Post Settings' title to post settings cog - add 'Edit this post' title to edit icon on content screen
15 lines
509 B
Handlebars
15 lines
509 B
Handlebars
<section class="post-controls">
|
|
{{#link-to "editor.edit" model.id class="btn btn-minor post-edit" title="Edit this post"}}<i class="icon-edit"></i>{{/link-to}}
|
|
</section>
|
|
|
|
{{#gh-content-preview-content tagName="section" content=model}}
|
|
<div class="wrapper">
|
|
<h1 class="content-preview-title">
|
|
{{#link-to "editor.edit" model.id}}
|
|
{{model.title}}
|
|
{{/link-to}}
|
|
</h1>
|
|
{{gh-format-html model.html}}
|
|
</div>
|
|
{{/gh-content-preview-content}}
|