netclock/templates/base.html

17 lines
502 B
HTML
Raw Permalink Normal View History

2020-09-12 10:58:38 +00:00
<!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>