Select Git revision
-
Jan Philipp Timme authoredJan Philipp Timme authored
base.html 791 B
{% load staticfiles %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
{% block meta-extra %}{% endblock %}
<title>{% block title-extra %}{% endblock %} | Salt-Observer</title>
<link rel="icon" href="{% static 'img/favicon-heartbeat.ico' %}">
{% block pre-style %}{% endblock %}
<link rel="stylesheet" href="{% static 'css/main.min.css' %}">
{% block post-style %}{% endblock %}
</head>
<body {% block body-args %}{% endblock %}>
{% block body %}{% endblock %}
{% block pre-script %}{% endblock %}
<script src="{% static 'js/contrib/main.min.js' %}"></script>
<script src="{% static 'js/base.min.js' %}"></script>
{% block post-script %}{% endblock %}
</body>
</html>