forked from meako689/FortyTwoTestTask
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
22 lines (17 loc) · 794 Bytes
/
base.html
File metadata and controls
22 lines (17 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{% block title %}{% endblock title %}Site Name</title>
<meta http-equiv="X-UA-Compatible" content="chrome=IE7" />
<meta name="viewport" content="initial-scale=1.0, width=device-width"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="stylesheet" href="{% static 'css/screen.css' %}" media="screen, projection"/>
{% block extra_head %}{% endblock extra_head %}
</head>
<body id="{% block body_id %}{% endblock %}" class="{% block body_class %}{% endblock %}">
{% block content %}{% endblock content %}
</body>
</html>