Divent/divent/templates/base.html.j2
Xéfir Destiny 0db6e9edff
All checks were successful
continuous-integration/drone/push Build is passing
Update bot with start works on front
2022-06-08 23:02:14 +02:00

23 lines
802 B
Django/Jinja

<!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>
{% block title %}{% endblock title %}
</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/font-awesome.min.css') }}" />
<link rel="stylesheet" href="{{ url_for('static', filename='css/global.css') }}" />
</head>
<body>
{% block content %}{% endblock content %}
<footer>
Next catastrophic life failure in about {{ days_before_failure }} days
</footer>
</body>
</html>