Download this file

jinja_wiki_master.html    24 lines (22 with data), 689 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends 'jinja_master/master.html' %}
{% 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_css %}
<link rel="stylesheet" type="text/css" href="{{g.app_static('css/wiki.css')}}" />
{% block wiki_extra_css %}{% endblock %}
{% endblock %}
{% block extra_js %}
<script type="text/javascript" src="{{g.app_static('js/wiki.js')}}"></script>
{% block wiki_extra_js %}{% endblock %}
{% endblock %}