-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (87 loc) · 3.46 KB
/
Copy pathindex.html
File metadata and controls
95 lines (87 loc) · 3.46 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
<!DOCTYPE html>
<!--
-->
<html>
<head>
<title>Python In Education - Python in Education</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">
<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>
<!--[if lt IE 9]>
<script src="/js/modernizr.js"></script>
<![endif]-->
</head>
<body class="home">
<!-- main container of all the page elements -->
<div id="wrapper">
<div class="wrapper-holder">
<!-- 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">
<!-- page logo -->
<a class="navbar-brand" href="/"><img alt="Python In Education" src="/images/logo.png"></a>
</div>
</div>
</div>
</nav>
</header>
<!-- contain main content of the page -->
<main role="main" id="main">
<div class="illustration-block language-select">
<div class="wrap">
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col">
<ul>
<li><a href="/en/">
Python in Education (English)</a></li>
<li><a href="/de/">
Python in der Bildung (Deutsche)</a></li>
<li>???</li>
</ul>
</div>
<div class="col-md-6 col">
<div class="image-holder">
<img src="/images/world.jpg"
alt="A Pythonic World">
</div>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
</div>
<!-- footer of the page -->
<div id="footer">
<div class="footer-section">
<div class="footer-frame" style="padding: 32px 0 0 0">
<div class="container-fluid">
<div class="col-copy">
<a href="https://www.python.org/psf-landing/" class="logo-partner"><img alt="Python Software Foundation" src="/images/psf_logo.jpg"></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>
</div>
</div>
</div>
</div>
</body>
<!-- Python Powered! -->
</html>