~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/wlmaps/base.html

  • Committer: Holger Rapp
  • Date: 2009-02-21 18:24:02 UTC
  • Revision ID: sirver@kallisto.local-20090221182402-k3tuf5c4gjwslbjf
Main Page contains now the same informations as before

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% extends "base.html" %}
2
 
{% load static %}
3
 
{% comment %}
4
 
   vim:ft=htmldjango
5
 
{% endcomment %}
6
 
 
7
 
{% block extra_head %}
8
 
<link rel="stylesheet" type="text/css" media="all" href="{% static 'css/forum.css' %}" />
9
 
<link rel="stylesheet" type="text/css" media="all" href="{% static 'css/maps.css' %}" />
10
 
<link rel="stylesheet" href="{% static 'star-ratings/css/star-ratings.css' %}" />
11
 
<script type="text/javascript" src="{% static 'star-ratings/js/dist/star-ratings.min.js' %}"></script>
12
 
{{block.super}}
13
 
{% endblock %}
14
 
 
15
 
{% block title %}Maps - {{ block.super }}{% endblock %}
16
 
 
17