Browse Source

base.html: Add blocks for JS and CSS in header

- also +1 for year in copyright

Signed-off-by: Sven Velt <sven@velt.de>
Sven Velt 10 years ago
parent
commit
748f358180
1 changed files with 3 additions and 1 deletions
  1. 3 1
      mymontools/templates/base.html

+ 3 - 1
mymontools/templates/base.html

@@ -3,15 +3,17 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; CHARSET=UTF-8"/>
 <title>MyMonTools{% block titlemore %}{% endblock %} 0.1.0</title>
+{% block headjs %}{% endblock %}
 <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">
+{% block headcss %}{% endblock %}
 </head>
 <body class="status">
 	<h1>MyMonTools{% block h1more %}{% endblock %} 0.1.0</h1>
-	<p>2012-2014 by Sven Velt</p>
+	<p>2012-2015 by Sven Velt</p>
 
 {% block body %}{% endblock %}