~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/mainpage/developers.html

  • Committer: Holger Rapp
  • Date: 2010-01-20 11:19:07 UTC
  • Revision ID: rapp@mrt.uka.de-20100120111907-e636jq19f7p13j5w
Added automatic synchronization between SVN developers file and the homepage

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "base.html" %}
 
2
{% load wl_markdown %}
 
3
 
 
4
{% block title %}Developers - {{ block.super }}{% endblock %}
 
5
 
 
6
{% block extra_head %}
 
7
<link rel="stylesheet" type="text/css" media="all" href="{{ MEDIA_URL }}/css/wiki.css" />{{ block.super}}
 
8
{% endblock %}
 
9
 
 
10
{% block content %}
 
11
<div class="wiki_article">
 
12
   <h1>Widelands Development Team</h1>
 
13
    {{ developers|safe }}
 
14
</div>
 
15
{% endblock %}
 
16