Add buttons for later

This commit is contained in:
Tim Van Baak 2020-04-10 21:28:48 -07:00
parent fd3ef7fbdc
commit a3ccb537ca
2 changed files with 11 additions and 0 deletions

View File

@ -32,6 +32,9 @@ div#editor-left div#editor-header {
div#editor-left div#editor-charselect {
margin: 5px;
}
div#editor-left div#editor-buttons {
margin: 5px;
}
div#editor-left input#editor-title {
font-size: 2em;
margin: 5px;

View File

@ -68,6 +68,14 @@
</div>
{% endfor %}
{% if article %}
<div id="editor-buttons">
Character literals:
<button>*</button>
<button>/</button>
<button>[</button>
<button>]</button>
<button>~</button>
</div>
<input id="editor-title" placeholder="Title" oninput="onContentChange()" disabled>
<textarea id="editor-content" class="fullwidth" oninput="onContentChange()" disabled></textarea>
{% endif %}