Divent/divent/templates/base.html.j2

28 lines
899 B
Plaintext
Raw Normal View History

2022-05-30 15:31:33 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<title>
2022-06-16 20:48:16 +00:00
{% block title %}
{% endblock title %}
2022-05-30 15:31:33 +00:00
</title>
2022-06-16 20:48:16 +00:00
<link rel="stylesheet"
href="{{ url_for('static', filename='css/font-awesome.min.css') }}"/>
<link rel="stylesheet"
href="{{ url_for('static', filename='css/global.css') }}"/>
2022-05-30 15:31:33 +00:00
</head>
<body>
2022-06-16 20:48:16 +00:00
<div id="content">
2022-06-17 09:07:10 +00:00
{% block content %}
{% endblock content %}
2022-06-16 20:48:16 +00:00
</div>
2022-06-08 21:02:14 +00:00
<footer>
Next catastrophic life failure in about {{ days_before_failure }} days
</footer>
2022-05-30 15:31:33 +00:00
</body>
</html>