~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/mainpage/developers.html

  • Committer: Holger Rapp
  • Date: 2009-02-19 15:31:42 UTC
  • Revision ID: sirver@h566336-20090219153142-dc8xuabldnw5t395
Initial commit of new widelands homepage

Show diffs side-by-side

added added

removed removed

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