Files
website-v2/templates/privacy_temp.html
Lacey Williams Henschel fb582afe9c Add temp privacy policy page
2023-05-23 16:31:44 -07:00

17 lines
354 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% load static %}
{% block title %}{% trans "Privacy Policy" %}{% endblock %}
{% block content %}
<div class="py-0 px-3 mb-3 md:py-6 md:px-0">
<div class="md:w-full">
<h1 class="text-4xl">Privacy Policy</h1>
<p class="mt-0 text-xl">
(Under construction)
</p>
</div>
</div>
{% endblock %}