-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
181 lines (153 loc) · 5.74 KB
/
index.html
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!doctype html>
<html>
<head>
<title>Python North East</title>
<meta name="google-site-verification" content="I8_ap_cv56JQv3XLA3cGOhG61FqanfumGnHO2iAByYc" />
<style type="text/css">
body {
width: 960px;
margin-left: auto;
margin-right: auto;
font-family: tahoma;
}
aside {
width: 200px;
float: right;
margin-left: 32px;
}
#main {
padding: 16px;
background-color: #efefef;
border-radius: 8px;
border: 1px solid #999;
}
#meetup-container {
border: 1px solid #999;
padding: 8px;
margin-top: 16px;
background-color: #fff;
border-radius: 8px;
}
#sponsors-container {
margin: auto;
border: 1px solid #999;
padding: 8px;
margin-top: 16px;
background-color: #fff;
border-radius: 8px;
}
#sponsors-container h2 {
color: #666;
font-size: 16px;
margin-top: 4px;
}
#img-container {
display: table;
width:98%;
}
#img-container a {
display: table-cell;
text-align: center;
width:25%;
}
#img-container img {
width:160px;
vertical-align: middle;
}
h1 {
color: #333;
}
h2 {
color: #224499;
font-size: 20px;
}
h3 {
color: #444;
font-size: 16px;
}
h4 {
color: #224499;
font-size: 12px;
}
header nav {
margin: 8px 0px;
}
header nav a {
margin: 4px;
text-decoration: none;
color: #224499;
font-size: 16px;
font-weight: bold;
}
header nav a:visited {
color: #224499;
}
</style>
</head>
<body>
<header>
<nav>
<a href="/">Home</a>
| <a
href="group">Discussion</a>
</nav>
</header>
<div id="main">
<aside>
<img src="color_logo_cmp.png" width="200" alt="Python NE Logo" />
</aside>
<h1>Python North East</h1>
<h2>Introduction</h2>
<p>Welcome to the site of the North East of England's
Python community. We're a group who promote the use of
the Python programming language. We organise monthly
meet-ups and other community events and aim to be a
focal part of the wider Python community in the North
East. We're also super friendly - beginners and
non-Pythonistas are especially welcome to our events
and to participate in our discussions.</p>
<div id="meetup-container">
<h2>
Our next meet up:
<blockquote class="twitter-tweet" data-lang="en"><p lang="en"
dir="ltr">Wed 11
Jan - Professional
Python development
w/ <a href="https://twitter.com/scott_walton">@scott_walton</a><a href="https://t.co/Rz8GhfGVUl">https://t.co/Rz8GhfGVUl</a><br>Thnx2
<a href="https://twitter.com/myPebble">@myPebble</a>
<a href="https://twitter.com/sharperecruit">@sharperecruit</a>
<a href="https://twitter.com/campusnorthuk">@campusnorthuk</a></p>—
Python North East
(@PythonNorthEast)
<a href="https://twitter.com/PythonNorthEast/status/817238984594227200">January
6,
2017</a></blockquote>
<script async src="//platform.twitter.com/widgets.js"
charset="utf-8"></script>
</div>
<h2>Get in touch</h2>
<p>Follow us on <a href="http://twitter.com/PythonNorthEast">Twitter - @PythonNorthEast</a></p>
<p>Join us on <a href="group">Google Groups</a></p>
</div>
<div id="sponsors-container">
<h2>Our sponsors:</h2>
<div id="img-container">
<a href="http://www.sharperecruitment.co.uk/">
<img src="Sharpe_logo_strap_rgb.jpg" alt="Sharpe
Recruitment
Logo">
</a>
<a href="https://www.mypebble.co.uk/">
<img src="PEBBLE.jpg" alt="PEBBLE LTD Logo">
</a>
<a href="http://campusnorth.co.uk/">
<img src="campusnorth.png" alt="Campus North Logo">
</a>
<a href="http://ignite100.com/">
<img src="Ignite_logo_2.jpg" alt="Ignit100 Logo.">
</a>
</div>
</div>
</div>
</body>
</html>