base.html 818 B

123456789101112131415161718192021
  1. {% load staticfiles %}
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; CHARSET=UTF-8"/>
  5. <title>MyMonTools{% block titlemore %}{% endblock %} 0.1.0</title>
  6. {% block headjs %}{% endblock %}
  7. <link href="{% static "css/nagtrap.css" %}" rel="stylesheet" type="text/css">
  8. <link href="{% static "css/montrap.css" %}" rel="stylesheet" type="text/css">
  9. <link href="{% static "css/icinga/status.css" %}" rel="stylesheet" type="text/css">
  10. <link href="{% static "css/icinga/showlog.css" %}" rel="stylesheet" type="text/css">
  11. <link href="{% static "css/icinga/common.css" %}" rel="stylesheet" type="text/css">
  12. {% block headcss %}{% endblock %}
  13. </head>
  14. <body class="status">
  15. <h1>MyMonTools{% block h1more %}{% endblock %} 0.1.0</h1>
  16. <p>2012-2015 by Sven Velt</p>
  17. {% block body %}{% endblock %}
  18. </body>
  19. </html>