mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 16:14:25 +03:00
664048be4e
no issue - Fixes the editor view so that the layout is correct - Remove default title - Fixes a couple of scoping issues with notifications
28 lines
1011 B
Handlebars
28 lines
1011 B
Handlebars
<section class="entry-container">
|
|
<header>
|
|
<section class="box entry-title">
|
|
{{input type="text" id="entry-title" placeholder="Your Post Title" value=title tabindex="1"}}
|
|
</section>
|
|
</header>
|
|
|
|
<section class="entry-markdown active">
|
|
<header class="floatingheader">
|
|
<small>Markdown</small>
|
|
<a class="markdown-help" href="" {{action "openModal" "markdown"}}><span class="hidden">What is Markdown?</span></a>
|
|
</header>
|
|
<section id="entry-markdown-content" class="entry-markdown-content">
|
|
{{gh-codemirror value=markdown scrollPosition=view.scrollPosition}}
|
|
</section>
|
|
</section>
|
|
|
|
<section class="entry-preview">
|
|
<header class="floatingheader">
|
|
<small>Preview <span class="entry-word-count js-entry-word-count">{{gh-count-words markdown}} words</span></small>
|
|
</header>
|
|
<section class="entry-preview-content">
|
|
{{gh-markdown markdown=markdown scrollPosition=view.scrollPosition}}
|
|
</section>
|
|
</section>
|
|
|
|
{{partial 'publish-bar'}}
|