add a page title and character encoding to templates

This commit is contained in:
Andreas Zweili 2017-12-27 17:49:46 +01:00
parent d64a55e8be
commit b371cffec1
2 changed files with 4 additions and 0 deletions

View File

@ -608,6 +608,8 @@ extended by them.
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="{% static 'css/inventory.css' %}">
<title>Network Inventory</title>
<meta charset="utf-8">
</head>
<body>
<a href="{% url 'index' %}">Home</a>

View File

@ -2,6 +2,8 @@
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="{% static 'css/inventory.css' %}">
<title>Network Inventory</title>
<meta charset="utf-8">
</head>
<body>
<a href="{% url 'index' %}">Home</a>