moved page meta data to it's own ui to clean up the page editing experience as it was becoming a bit crowded. also moved to saving and deleting buttons to title bar so they are always available added a note to web routes to reorganize them within the web routes file to reduce the confusion present by having them in their own Controllers. it's just an extra layer that's not needed
42 lines
No EOL
2.1 KiB
PHP
42 lines
No EOL
2.1 KiB
PHP
<div class="text-editor-control">
|
|
<button id="edit-bold" class="content-editor-btn-text editor-button" title="bold">
|
|
<svg id="edit-bold" class="icon">
|
|
<use id="edit-bold" xlink:href="/assets/images/global/sprite.svg#tabler-bold" />
|
|
</svg>
|
|
</button>
|
|
<button id="edit-italic" class="content-editor-btn-text editor-button" title="italic">
|
|
<svg id="edit-italic" class="icon">
|
|
<use id="edit-italic" xlink:href="/assets/images/global/sprite.svg#tabler-italic" />
|
|
</svg>
|
|
</button>
|
|
<button id="edit-strikethrough" class="content-editor-btn-text editor-button" title="strikethrough">
|
|
<svg id="edit-strikethrough" class="icon">
|
|
<use id="edit-strikethrough" xlink:href="/assets/images/global/sprite.svg#tabler-strikethrough" />
|
|
</svg>
|
|
</button>
|
|
<button id="edit-link" class="content-editor-btn-icon editor-button" title="insert link">
|
|
<svg id="edit-link" class="icon">
|
|
<use id="edit-link" xlink:href="/assets/images/global/sprite.svg#entypo-link" />
|
|
</svg>
|
|
</button>
|
|
<button id="edit-header1" class="content-editor-btn-text editor-button" title="header 1">
|
|
<svg id="edit-header1" class="icon">
|
|
<use id="edit-header1" xlink:href="/assets/images/global/sprite.svg#tabler-heading-1" />
|
|
</svg>
|
|
</button>
|
|
<button id="edit-header2" class="content-editor-btn-text editor-button" title="header 2">
|
|
<svg id="edit-header2" class="icon">
|
|
<use id="edit-header2" xlink:href="/assets/images/global/sprite.svg#tabler-heading-2" />
|
|
</svg>
|
|
</button>
|
|
<button id="edit-header3" class="content-editor-btn-text editor-button" title="header 3">
|
|
<svg id="edit-header3" class="icon">
|
|
<use id="edit-header3" xlink:href="/assets/images/global/sprite.svg#tabler-heading-3" />
|
|
</svg>
|
|
</button>
|
|
<button id="edit-image" class="content-editor-btn-icon editor-button" title="insert image">
|
|
<svg id="edit-image" class="icon">
|
|
<use id="edit-image" xlink:href="/assets/images/global/sprite.svg#entypo-image" />
|
|
</svg>
|
|
</button>
|
|
</div> |