-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbase.html
More file actions
43 lines (40 loc) · 1.98 KB
/
Copy pathbase.html
File metadata and controls
43 lines (40 loc) · 1.98 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
{% 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</title>
<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">
</head>
<body>
<div id="wrapper">
<div class="w1">
{% block header_block %}
{% include 'blocks/header.html' %}
{% endblock %}
<!-- <div id="top-banner" class="conf">
<a href="http://conf.python.ru/?utm_source=python-ru&utm_medium=banner&utm_campaign=python-ru-top" target="_blank"></a>
</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>
<script type="text/javascript">(window.Image ? (new Image()) : document.createElement('img')).src = 'https://vk.com/rtrg?p=VK-RTRG-140885-7lEHE';</script>
{% include 'blocks/analytics.html' %}
{% block extra_js %}{% endblock %}
</body>
</html>