netclock/templates/base.html
2020-09-12 12:58:38 +02:00

16 lines
502 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Netclock {% if self.title() %} - {% endif %}{% block title %}{% endblock title %}</title>
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
</head>
<body>
{% block body %}{% endblock body %}
<script src="{{ url_for('static', filename='dist/netclock.bundle.js') }}"></script>
{% block scripts %}{% endblock scripts %}
</body>
</html>