~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/mainpage/changelog.html

  • Committer: Holger Rapp
  • Date: 2012-09-01 16:11:57 UTC
  • mfrom: (325.1.23 development)
  • Revision ID: sirver@gmx.de-20120901161157-nm7xupfhd2jlpypg
Merged Shevonars amazing work!

Show diffs side-by-side

added added

removed removed

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