22 lines
451 B
Plaintext
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> |