Parent: [dfa32d] (diff)

Child: [462c18] (diff)

Download this file

master.html    21 lines (19 with data), 585 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends 'jinja_master/master.html' %}
{% 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>
<ol>
<li>
<label>Name</label>
<input type="text" name="name"/>
</li>
</ol>
</form>
</div>
{% endblock %}
{% block extra_js %}
<script type="text/javascript" src="{{g.app_static('js/wiki.js')}}"></script>
{% block wiki_extra_js %}{% endblock %}
{% endblock %}