-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
116 lines (111 loc) · 3.95 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
<!DOCTYPE html>
<title>Fleet.pm - Fleet Perl Mongers</title>
<link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="/open-layers/ol.css" rel="stylesheet">
<style>
body {
padding: 40px 0;
}
.jumbotron {
background: url(hero.png) center/cover;
color: #fff;
padding: 40px;
}
#map {
width: 100%;
}
</style>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="/bootstrap/js/bootstrap.min.js"></script>
<script src="/open-layers/ol.js"></script>
<script>
$(function(){
// Make the map square.
var div = $('#map');
div.height(div.width());
new ol.Map({
target: 'map',
layers: [new ol.layer.Tile({ source: new ol.source.OSM() })],
view: new ol.View({
center: ol.proj.transform(
[-0.833, 51.2902], 'EPSG:4326', 'EPSG:3857'),
zoom: 17
})
});
});
</script>
<div class="container">
<header class="jumbotron">
<h1>Do <em>you</em> (ab)use Perl?</h1>
<p>
The Fleet Perl Mongers meet to discuss Perl on the second
Wednesday of the month.
</p>
<pre>perl -e'$_=q/$#%$#%##$%&#$%&&$&$%$%$$#%##$&##$%$$$&#%$%&##%&%##%%/;s#.#chr ord($&)-35#eg;s#....#$c="";$c.=substr unpack("B8",substr$&,$_,1),6,2 for 0..3;pack"B8",$c#eg;print'</pre>
</header>
<section id="join">
<div class="page-header">
<h2>Fleet.pm <small>Fleet Perl Mongers</small></h2>
</div>
<div class="row">
<div class="col-lg-4">
<h3>About Us</h3>
<p>
Fleet.pm is a local community of Perl users, under the
international Perl Mongers umbrella.
</p>
<ul>
<li><a href="http://www.pm.org">Perl Mongers</a>
</ul>
<h3>About Perl</h3>
<p>
Perl 5 is a highly capable, feature-rich programming
language with over 26 years of development.
</p>
<ul>
<li>
<a href="http://www.perl.org">www.perl.org</a>
<li>
<a href="http://www.perlfoundation.org">
The Perl Foundation
</a>
</ul>
</div>
<div class="col-lg-4">
<h3>Meetings</h3>
<p>
We meet on the second Wednesday of each month, at 6pm
in <a href=//www.emberinns.co.uk/nationalsearch/southeast/the-station-fleet>The Station</a>.
</p>
<p>The next three meetings will be:</p>
<ul>
<li>Wednesday, 09<sup>th</sup> October 2019
<li>Wednesday, 13<sup>th</sup> November 2019
<li>Wednesday, 11<sup>th</sup> December 2019
</ul>
<p>
(Contact the mailing list if this list seems out of
date.)
</p>
<h3>Contact</h3>
<p>
The Fleet-pm mailing list is low traffic, and will
have announcements of future meetings.
</p>
<ul>
<li>
<a href="http://mail.pm.org/mailman/listinfo/fleet-pm">
Subscribe/Unsubscribe
</a>
<li>
<a href="http://mail.pm.org/pipermail/fleet-pm">
List Archives
</a>
</ul>
</div>
<div class="col-lg-4">
<div id="map"></div>
</div>
</div>
</section>
</div>