base.html 751 B

12345678910111213141516171819
  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. <link href="{% static "css/nagtrap.css" %}" rel="stylesheet" type="text/css">
  7. <link href="{% static "css/montrap.css" %}" rel="stylesheet" type="text/css">
  8. <link href="{% static "css/icinga/status.css" %}" rel="stylesheet" type="text/css">
  9. <link href="{% static "css/icinga/showlog.css" %}" rel="stylesheet" type="text/css">
  10. <link href="{% static "css/icinga/common.css" %}" rel="stylesheet" type="text/css">
  11. </head>
  12. <body class="status">
  13. <h1>MyMonTools{% block h1more %}{% endblock %} 0.1.0</h1>
  14. <p>2012-2014 by Sven Velt</p>
  15. {% block body %}{% endblock %}
  16. </body>
  17. </html>