aboutsummaryrefslogtreecommitdiffstats
path: root/shareit/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'shareit/templates/base.html')
-rw-r--r--shareit/templates/base.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/shareit/templates/base.html b/shareit/templates/base.html
new file mode 100644
index 0000000..85e840f
--- /dev/null
+++ b/shareit/templates/base.html
@@ -0,0 +1,12 @@
+<!doctype html>
+<html>
+<head>
+ <title>{% block title %}Home{% endblock %} - Shareit</title>
+ <link rel="icon" sizes="256 128 64 32 16" href="/favicon.ico" />
+ <link rel="icon" type="image/x-icon" href="/favicon.ico" />
+ <link rel="icon" href="/favicon.ico" />
+</head>
+<body>
+ {% block content %}{% endblock %}
+</body>
+</html>