mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-27 05:32:08 +00:00
17 lines
354 B
HTML
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 %}
|