Files
gollum/lib/gollum/templates/page.mustache
T
2019-08-13 22:10:10 +02:00

22 lines
451 B
Plaintext

<script>
Mousetrap.bind(['e'], function( e ) {
e.preventDefault();
window.location = "{{edit_path}}" + '/' + pageFullPath;
return false;
});
</script>
<div id="wiki-wrapper" class="page">
<div id="head">
{{#navbar?}}{{>navbar}}{{/navbar?}}
</div>
{{>wiki_content}}
<form name="rename" method="POST" action="{{rename_path}}/{{escaped_url_path}}">
<input type="hidden" name="rename"/>
<input type="hidden" name="message"/>
</form>
</div>