mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
2cf81164f7
Closes #2747 - Added new 'editor-save-button' view and template. - Added save action to post controller. - Set a new post as the default model for the /editor/ route. - Set the `posts/post` controller as the controller for the /editor/ route. - Needs ghost-popover #2418 component for full pop-up functionality
22 lines
916 B
Handlebars
22 lines
916 B
Handlebars
<footer id="publish-bar">
|
|
<nav>
|
|
<section id="entry-tags" href="#" class="left">
|
|
<label class="tag-label" for="tags" title="Tags"><span class="hidden">Tags</span></label>
|
|
<div class="tags"></div>
|
|
<input type="hidden" class="tags-holder" id="tags-holder">
|
|
<input class="tag-input" id="tags" type="text" data-input-behaviour="tag" />
|
|
<ul class="suggestions overlay"></ul>
|
|
</section>
|
|
<div class="right">
|
|
|
|
<section id="entry-controls">
|
|
<a class="post-settings" title="Post Settings" {{action 'editSettings'}}><span class="hidden">Post Settings</span></a>
|
|
<!-- @TODO Use Ghost Popover (#2565) and style arrow down -->
|
|
{{view "post-settings-menu-view"}}
|
|
</section>
|
|
|
|
{{view "editor-save-button" id="entry-actions"}}
|
|
</div>
|
|
</nav>
|
|
</footer>
|