2
0
Fork 0
shiftregister/templates/base.html

14 lines
313 B
HTML
Raw Normal View History

<!DOCTYPE html>
2022-04-13 18:28:45 +02:00
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>{% block title %}Help!{% endblock %}</title>
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
</head>
<body>
{% block body %}
{% endblock %}
</body>
</html>