2
0
Fork 0
shiftregister/shiftregister/app/templates/base.html

15 lines
262 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %}Help!{% endblock %}</title>
</head>
<body>
{% if helper%}
Hallo {{helper.name}}
{%endif%}
<div id="content">
{% block content %}{% endblock %}
</div>
</body>
</html>