summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/privacy.html
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/skins/default/templates/privacy.html')
-rw-r--r--askbot/skins/default/templates/privacy.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/askbot/skins/default/templates/privacy.html b/askbot/skins/default/templates/privacy.html
new file mode 100644
index 00000000..fe074491
--- /dev/null
+++ b/askbot/skins/default/templates/privacy.html
@@ -0,0 +1,17 @@
+{% extends "base_content.html" %}
+<!-- privacy.html -->
+{% load extra_tags %}
+{% load i18n %}
+{% load humanize %}
+{% block title %}{% spaceless %}{% trans "Privacy policy" %}{% endspaceless %}{% endblock %}
+{% block forejs %}
+{% endblock %}
+{% block content %}
+<div class="headNormal">
+ {% trans "Privacy policy" %}
+</div>
+<div id="main-body" style="width:100%">
+ {{settings.FORUM_PRIVACY|safe}}
+</div>
+{% endblock %}
+<!-- end privacy.html -->