surwiki/templates/article.html
2018-09-24 08:43:36 +02:00

54 lines
1.5 KiB
HTML

<script src="_assets/{{script_js()}}" defer></script>
<div class="container {{#edit?}}edit{{/edit}}">
<div class="rendered">
{{>article_contents.html}}
</div>
<form autocomplete="off" id="article-editor" action="" method="POST">
<div class="editor">
<div class="hero">
<header>
<h1><input autocomplete=off type=text name=title value="{{title}}" placeholder="Title" required></h1>
</header>
</div>
<div class="theme-picker">
{{#themes}}
<input autocomplete="off" type="radio" name="theme" value="{{.theme}}"{{#.selected?}} checked{{/.selected}} class="theme-picker--option {{.theme.css_class()}} themed">
{{/themes}}
</div>
<article>
<p>
<input autocomplete=off type=hidden name=base_revision value="{{revision}}">
<textarea autocomplete=off name=body placeholder="Article goes here">{{raw}}</textarea>
<textarea autocomplete=off class="shadow-control"></textarea>
</p>
</article>
</div>
<div class="editor-controls">
{{#cancel_url}}
<a class="button button-cancel cancel" href="{{.}}">Cancel</a>
{{/cancel_url}}
{{^cancel_url}}
<button class="button button-cancel cancel" disabled>Cancel</a>
{{/cancel_url}}
<button class="button button-default" type=submit>Save</button>
</div>
</form>
</div>
<footer>
<ul class="dense"
><li class="last-updated {{^last_updated}}missing{{/last_updated}}">{{#last_updated}}{{{.}}}{{/last_updated}}</li
><li><a id="openEditor" href="?edit" rel="nofollow">Edit</a></li
></ul>
{{>footer/items.html}}
</footer>
{{>dialog_prototypes.html}}