1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
{% comment %}
vim:ft=htmldjango
{% endcomment %}
{% load wl_extras %}
<script type="text/javascript">
/* Enable dropdown menus on touch devices */
$(document).ready(function(){
$(".menu li").on("touchstart", function() {
$(this).next("ul").css("display", "block");
});
});
</script>
<ul class="menu posLeft">
<li><a href="/">Home</a>
<ul>
<li><a href="{% url 'news_index' %}">News Archive</a></li>
<li><a href="{% url 'wlpoll_archive' %}">Poll Archive</a></li>
</ul>
</li>
<li><a href="{% url 'wiki_article' "Description" %}">The Game</a>
<ul>
<li><a href="{% url 'wiki_article' "Description" %}">Description</a></li>
<li><a href="{% url 'wiki_article' "Download" %}">Download</a></li>
<li><a href="{% url 'wlscreens_index' %}">Screenshots</a></li>
<li><a href="{% url 'wiki_article' "Artwork" %}">Artwork</a></li>
<li><a href="{% url 'wlmaps_index' %}">Maps</a></li>
<li><a href="{% url 'wlhelp_index' %}">Encyclopedia</a></li>
<li><a href="{% url 'changelog' %}">Changelog</a></li>
<li><a href="{% url 'developers' %}">Widelands Development Team</a></li>
<li><a href="/wiki/LinksPage/">Links</a></li>
</ul>
</li>
<li><a href="{% url 'wiki_index' %}">Wiki</a>
<ul>
<li><a href="{% url 'wiki_article' "Game Manual" %}">Game Manual</a></li>
<li><a href="{% url 'wiki_article' "Creating Game Content" %}">Creating Game Content</a></li>
<li><a href="{% url 'wiki_article' "The Widelands Project" %}">The Widelands Project</a></li>
<li><a href="/wiki/list/">List Of All Pages</a></li>
<li><a href="/wiki/history/">Recent changes</a></li>
</ul>
</li>
<li><a href="{% url 'pybb_index' %}">Forums</a>
{% forum_navigation %}
</li>
<li><a href="{% url 'webchat_index' %}">Chat</a></li>
<li><a href="{% url 'wiki_article' "Development" %}">Development</a>
<ul>
<li><a href="{% url 'wiki_article' "Contribute" %}">Contribute</a></li>
<li><a href="{% url 'developers' %}">Widelands Development Team</a></li>
<li><a href="/documentation/index.html" target="_blank">Documentation</a></li>
<li><a href="https://bugs.launchpad.net/widelands" target="_blank">Widelands Bugtracker</a></li>
<li><a href="https://bugs.launchpad.net/widelands-website" target="_blank">Website Bugtracker</a></li>
</ul>
</li>
</ul>
<div class="searchBox posRight">
<form method="post" action="/search/">
<div class="searchBoxInner">
<span class="fake_selector">
<select name="section" id="selector" title="Search in">
<option>Forum</option>
<option>Wiki</option>
<option>Encyclopedia</option>
<option>News</option>
<option>Maps</option>
<option>All</option>
</select>
<input id="id_nav_search" type="text" name="q" class="searchField" placeholder="Search Forum" size="15" maxlength="200" />
{% csrf_token %}
</span>
</div>
</form>
</div>
|