-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbase.html
More file actions
executable file
·52 lines (47 loc) · 2.2 KB
/
Copy pathbase.html
File metadata and controls
executable file
·52 lines (47 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{% load staticfiles %}
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="google-site-verification" content="RAskX0UNOnUGX4OiXn7jalIRZj-SwZej5FRKUlBHEnM" />
<title>Python.ru{% block title %} {% endblock %}</title>
{% block head %}
{% endblock %}
<link media="all" rel="stylesheet" href="{% static "css/all.css" %}" />
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600' rel='stylesheet' type='text/css'>
<link rel="apple-touch-icon" sizes="180x180" href="{% static "favicons/apple-touch-icon.png" %}">
<link rel="icon" type="image/png" href="{% static "favicons/favicon-32x32.png" %}" sizes="32x32">
<link rel="icon" type="image/png" href="{% static "favicons/favicon-16x16.png" %}" sizes="16x16">
<link rel="manifest" href="{% static "favicons/manifest.json" %}">
<link rel="mask-icon" href="{% static "favicons/safari-pinned-tab.svg" %}" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<meta property="og:url" content="">
<meta property="og:image" content="}" />
<meta property="og:title" content="python.ru" />
<meta property="og:description" content="python.ru русскоязычное сообщество языка python" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Хабр">
</head>
<body>
<div id="wrapper">
<div class="w1">
{% load staticfiles nginx_image %}
{% block header_block %}
{% include 'blocks/header.html' %}
{% endblock %}
{% load banner_tag %}
<div id="block_top_banner">{% get_banner "top_banner" %}</div>
<main>
{% block main_content %}{% endblock %}
</main>
{% include 'blocks/footer.html' %}
</div>
</div>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script type="text/javascript" src="{% static "js/masonry.pkgd.min.js" %}"></script>
<script type="text/javascript" src="{% static "js/jquery.main.js" %}"></script>
{% include 'blocks/analytics.html' %}
{% block extra_js %}{% endblock %}
</body>
</html>