mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
9a089ecee3
Fixes #352 - Removed one-off styles and code for the publish button. Publish button now uses data-toggle attribute wired up in toggle.js and forms.scss. - Ensured split button common styles are up to date to conform with vendor prefixing of transform properties.
56 lines
No EOL
2.6 KiB
Handlebars
56 lines
No EOL
2.6 KiB
Handlebars
{{!< default}}
|
|
{{! TODO: Add "scrolling" class only when one of the panels is scrolled down by 5px or more }}
|
|
<section class="entry-container">
|
|
<header>
|
|
<section class="box entry-title">
|
|
<input type="text" id="entry-title"
|
|
placeholder="{{e "editor.entry_title.placeholder" "The Post Title Gets Inserted Up Here"}}"
|
|
value="{{title}}" tabindex="1">
|
|
</section>
|
|
</header>
|
|
|
|
<section class="entry-markdown active">
|
|
<header class="floatingheader">
|
|
{{e "editor.headers.markdown.label" "Markdown"}}
|
|
<a class="markdown-help" href="#"><span class="hidden">What is Markdown?</span></a>
|
|
</header>
|
|
<section class="entry-markdown-content">
|
|
<textarea id="entry-markdown"></textarea>
|
|
</section>
|
|
</section>{{!.entry-markdown}}
|
|
|
|
<section class="entry-preview">
|
|
<header class="floatingheader">
|
|
Preview <span class="entry-word-count js-entry-word-count">0 words</span>
|
|
</header>
|
|
<section class="entry-preview-content">
|
|
<div class="rendered-markdown">
|
|
{{!The content gets inserted in here, bitches!}}
|
|
</div>
|
|
</section>
|
|
</section>{{!.entry-preview}}
|
|
</section>
|
|
<footer id="publish-bar">
|
|
<nav>
|
|
<section id="entry-categories" href="#" class="left">
|
|
<label class="category-label" for="categories"><span class="hidden">Categories</span></label>
|
|
<div class="categories"></div>
|
|
<input type="hidden" class="category-holder" id="category-holder">
|
|
<input class="category-input" id="categories" type="text"
|
|
data-populate-hidden="#category-holder" data-input-behaviour="tag" data-populate=".categories" />
|
|
<ul class="suggestions overlay" data-populate=".categories"></ul>
|
|
</section>
|
|
<div class="right">
|
|
<section id="entry-actions" class="splitbutton-save">
|
|
<button type="button" class="button-save js-post-button"></button>
|
|
<a class="options up" data-toggle="ul" href="#"><span class="hidden">Options</span></a>
|
|
<ul class="editor-options overlay" style="display:none">
|
|
<li data-set-status="published"><a href="#">Publish Now</a></li>
|
|
<li data-set-status="queue"><a href="#">Add to Queue</a></li>
|
|
<li data-set-status="publish-on"><a href="#">Publish on...</a></li>
|
|
<li data-set-status="draft"><a href="#">Save Draft</a></li>
|
|
</ul>
|
|
</section>
|
|
</div>
|
|
</nav>
|
|
</footer> |