mail.html
HTML document, ASCII text
1<!DOCTYPE html> 2<html lang="en"> 3<head> 4<meta charset="UTF-8"> 5</head> 6<body> 7<header> 8 9</header> 10<main> 11{% block content %} 12{% endblock %} 13</main> 14<footer> 15<small> 16For any inquiries, write to <a href="mailto:{{ config.CONTACT_EMAIL }}"></a><br>. To adjust your email 17notification preferences, log in to your account in a browser and visit 18<a href="{{ config.web_protocol }}://{{ config.BASE_DOMAIN }}/settings">your user settings</a>. 19</small> 20</footer> 21</body> 22</html>