rpiwebapp-public/templates/base.html

16 lines
307 B
HTML
Raw Normal View History

2019-07-06 23:00:00 -07:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ title }}</title>
<link rel="icon" type="image/png" href="../static/icon.png" sizes="32x32">
2019-07-06 23:00:00 -07:00
{% block head %}
{% endblock %}
</head>
<body>
{% block content %}
<p>Hello World!</p>
{% endblock %}
</body>
</html>