Files @ 14abe07a4a8b
Branch filter:

Location: website/www/conservancy/static/coming-soon.html

bsturmfels
Remove unnecessary use of "safe" template tag.

This tag marks a variable as not requiring escaping by the template engine,
potentially creating cross-site scripting vulnerabilities, so shouldn't be used
unless absolutely necessary. In these cases, I don't think it's necessary.
{% extends "base_conservancy.html" %}
{% load humanize %}

{% block content %}

<h1>Coming Soon!</h1>

<p>A big announcement will be here soon!  Check back at 12:30 US/Eastern on Tuesday 19 October 2021.</p>

{% endblock %}