{% extends 'base.html' %}
{% load i18n %}
{% block title %}{% trans "Privacy Policy" %}{% endblock %}
{% block content %}
{% trans "Privacy Policy" %}
{% include 'info/privacy_main.html' %}
{% if use_facebook %}
{% include 'info/privacy_facebook.html' %}
{% endif %}
{% if use_twitter %}
{% include 'info/privacy_twitter.html' %}
{% endif %}
{% endblock %}