~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/privacy_policy.html

  • Committer: franku
  • Date: 2018-10-02 16:55:42 UTC
  • mto: This revision was merged to the branch mainline in revision 503.
  • Revision ID: somal@arcor.de-20181002165542-k5a3bwy01y5td8v8
added an privacy policy app

Show diffs side-by-side

added added

removed removed

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