~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/wiki/base.html

  • Committer: Holger Rapp
  • Date: 2009-02-20 12:25:18 UTC
  • Revision ID: holgerrapp@gmx.net-20090220122518-feaq34ta973snnct
Imported wikiapp into our repository, because we did some local changes (users must be logged in to edit wiki pages)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{% extends "base.html" %}
2
 
{% load i18n %}
3
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
4
 
            "http://www.w3.org/TR/html4/strict.dtd">
5
 
<html>
6
 
<head>
7
 
 
8
 
        <meta http-equiv="Content-type" content="text/html; charset=utf-8">
9
 
        <title>{% block title %}{% endblock %} - WikiApp</title>
10
 
 
11
 
</head>
12
 
<body>
13
 
    <div id="head">
14
 
      <h1>wikiapp</h1>
15
 
      {% include "wiki/searchbox.html" %}
16
 
    </div>
17
 
    
18
 
    <div id="actions">
19
 
      {% block footer %}{% endblock %}
20
 
      <a href="{% url wiki_list %}">{% trans "List all articles" %}</a>
21
 
    </div>
22
 
    
23
 
    <div id="article">
24
 
      {% include "wiki/messages.html" %}
25
 
      {% block content %}{% endblock %}
26
 
    </div>
27
 
 
28
 
    <div id="footer">
29
 
      Powered by <a href="http://code.google.com/p/django-wikiapp">django-wikiapp</a>
30
 
    </div>
31
 
</body>
32
 
</html>