reformat the base.html file

This commit is contained in:
Andreas Zweili 2017-12-27 17:50:25 +01:00
parent b371cffec1
commit 45810163cf
2 changed files with 14 additions and 14 deletions

View File

@ -607,20 +607,20 @@ extended by them.
{% load staticfiles %}
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="{% static 'css/inventory.css' %}">
<link rel="stylesheet" href="{% static 'css/inventory.css' %}">
<title>Network Inventory</title>
<meta charset="utf-8">
</head>
<body>
<a href="{% url 'index' %}">Home</a>
<h1>{% block section_title %}Device Inventory{% endblock %}</h1>
{% block content %}{% endblock %}
</body>
<footer>
<a href="{% url 'index' %}">Home</a>
<h1>{% block section_title %}Device Inventory{% endblock %}</h1>
{% block content %}{% endblock %}
<footer>
{% block footer %}
<p>Created by Andreas Zweili licensed under GPL v3.0</p>
{% endblock %}
</footer>
</footer>
</body>
</html>
#+END_SRC

View File

@ -1,18 +1,18 @@
{% load staticfiles %}
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="{% static 'css/inventory.css' %}">
<link rel="stylesheet" href="{% static 'css/inventory.css' %}">
<title>Network Inventory</title>
<meta charset="utf-8">
</head>
<body>
<a href="{% url 'index' %}">Home</a>
<h1>{% block section_title %}Device Inventory{% endblock %}</h1>
{% block content %}{% endblock %}
</body>
<footer>
<a href="{% url 'index' %}">Home</a>
<h1>{% block section_title %}Device Inventory{% endblock %}</h1>
{% block content %}{% endblock %}
<footer>
{% block footer %}
<p>Created by Andreas Zweili licensed under GPL v3.0</p>
{% endblock %}
</footer>
</footer>
</body>
</html>