~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/wlscreens/base.html

  • Committer: Holger Rapp
  • Date: 2009-04-11 15:21:15 UTC
  • Revision ID: rapp@mrt.uka.de-20090411152115-qpbnxxze99td19bz
Added a first version of a screenshot application

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "base.html" %}
 
2
{% comment %}
 
3
   vim:ft=htmldjango
 
4
{% endcomment %}
 
5
 
 
6
{% block extra_head %}
 
7
{{ block.super }}
 
8
 
 
9
<link rel="stylesheet" type="text/css" media="all" href="{{ MEDIA_URL }}css/screens.css" />
 
10
{% endblock %}
 
11
 
 
12
{% block title %}Screenshots - {{ block.super }}{% endblock %}
 
13
 
 
14