Parent: [1d84c0] (diff)

Child: [de4a3c] (diff)

Download this file

master.html    17 lines (15 with data), 560 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
{% extends g.theme.master %}
{% do g.register_app_css('css/wiki.css', compress=False) %}
{% block content %}
{% block wiki_content %}content here{% endblock %}
<div id="create_wiki_page_holder" title="Create New Page" style="display:none">
<form>
<label class="grid-2">Name</label>
<div class="grid-7"><input type="text" name="name"/></div>
</form>
</div>
{% endblock %}
{% block extra_js %}
<script type="text/javascript" src="{{g.app_static('js/wiki.js')}}"></script>
{% block wiki_extra_js %}{% endblock %}
{% endblock %}