-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathbase.html
More file actions
143 lines (143 loc) · 6.51 KB
/
base.html
File metadata and controls
143 lines (143 loc) · 6.51 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<!--
{% block secret %}{% endblock %}
-->
<html>
<head>
<title>{% block title %}Python In Education - {% endblock %} {{ page.title }}</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="X-Clacks-Overhead" content="GNU John Pinner">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/bootstrap-extended.css">
<link rel="stylesheet" href="/css/main.css">
{% block css %}{% endblock %}
<link href='https://fonts.googleapis.com/css?family=Ubuntu:400,300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Permanent+Marker' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Poppins:400,600,700' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js" defer></script>
<script type="text/javascript">
window.jQuery || document.write('<script src="/js/jquery-1.11.2.min.js"><\/script>')
</script>
<script src="/js/bootstrap.min.js"></script>
{% block javascript %}{% endblock %}
<!--[if lt IE 9]>
<script src="/js/modernizr.js"></script>
<![endif]-->
</head>
<body class="{% block body_class %}home{% endblock %}">
<!-- main container of all the page elements -->
<div id="wrapper">
<div class="wrapper-holder">
{% block header %}
<!-- header of the page -->
<header id="header" class="header">
<nav class="navbar navbar-default">
<div class="header-holder">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#main-menu" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- page logo -->
<a class="navbar-brand" href="/en/"><img alt="Python In Education" src="/images/logo.png"></a>
</div>
<div class="collapse navbar-collapse" id="main-menu">
<!-- main navigation of the page -->
<ul class="nav navbar-nav">
<li><a href="/en/#learn">learn</a></li>
<li><a href="/en/#teach">teach</a></li>
<li><a href="/en/#build">build</a></li>
{% block microbit_menu %}<li><a href="/en/microbit">micro:bit</a></li>{% endblock %}
{% block raspberrypi_menu %}<li><a href="/en/raspberrypi">raspberry pi</a></li>{% endblock %}
</ul>
<!-- switch language link -->
<div class="link-holder">
<a class="language-link" href="/"><img alt="english" src="/images/language.png" title="Change language"><span>Change language</span></a>
</div>
</div>
</div>
</div>
</nav>
</header>
{% endblock %}
<!-- contain main content of the page -->
<main role="main" id="main">
{% block content %}{% endblock %}
</main>
</div>
</div>
{% block footer %}
<!-- footer of the page -->
<div id="footer">
<div class="footer-section">
<div class="footer-frame">
<div class="container-fluid">
<div class="col-copy">
<a href="/en/" class="logo-footer"><img alt="Python In Education" src="/images/logo.png"></a>
<div class="copy">
<p>© 2016 The Python Software Foundation. <br>All rights reserved.</p>
<p>Design by <a href="https://www.blanc.ltd.uk/">Blanc</a></p>
</div>
<a href="https://www.python.org/psf-landing/" class="logo-partner"><img alt="Python Software Foundation" src="/images/psf_logo.jpg"></a>
</div>
<div class="footer-nav">
<ul>
<li>
<a href="/en/#learn">learn</a>
<ul>
<li><a href="#"><span>editor</span></a></li>
<li><a href="#"><span>tutorials</span></a></li>
<li><a href="#"><span>cool stuff</span></a></li>
<li><a href="#"><span>docs</span></a></li>
</ul>
</li>
<li>
<a href="/en/#teach">teach</a>
<ul>
<li><a href="#"><span>this is a link</span></a></li>
<li><a href="#"><span>this is a link</span></a></li>
</ul>
</li>
<li>
<a href="/en/#build">build</a>
<ul>
<li><a href="#"><span>this is a link</span></a></li>
<li><a href="#"><span>this is a link</span></a></li>
<li><a href="#"><span>this is a link</span></a></li>
<li><a href="#"><span>this is a link</span></a></li>
<li><a href="#"><span>this is a link</span></a></li>
<li><a href="#"><span>this is a link</span></a></li>
</ul>
</li>
<li>
<a href="#">micro:bit</a>
<ul>
<li><a href="#"><span>editor</span></a></li>
<li><a href="#"><span>tutorials</span></a></li>
<li><a href="#"><span>cool stuff</span></a></li>
<li><a href="#"><span>docs</span></a></li>
</ul>
</li>
<li>
<a href="#">raspberry pi</a>
<ul>
<li><a href="#"><span>this is a link</span></a></li>
<li><a href="#"><span>this is a link</span></a></li>
<li><a href="#"><span>this is a link</span></a></li>
<li><a href="#"><span>this is a link</span></a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
{% endblock %}
</body>
<!-- Python Powered! -->
</html>