12345678910111213141516171819 |
- {% load staticfiles %}
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; CHARSET=UTF-8"/>
- <title>MyMonTools{% block titlemore %}{% endblock %} 0.1.0</title>
- <link href="{% static "css/nagtrap.css" %}" rel="stylesheet" type="text/css">
- <link href="{% static "css/montrap.css" %}" rel="stylesheet" type="text/css">
- <link href="{% static "css/icinga/status.css" %}" rel="stylesheet" type="text/css">
- <link href="{% static "css/icinga/showlog.css" %}" rel="stylesheet" type="text/css">
- <link href="{% static "css/icinga/common.css" %}" rel="stylesheet" type="text/css">
- </head>
- <body class="status">
- <h1>MyMonTools{% block h1more %}{% endblock %} 0.1.0</h1>
- <p>2012-2014 by Sven Velt</p>
- {% block body %}{% endblock %}
- </body>
- </html>
|