-
Notifications
You must be signed in to change notification settings - Fork 11
/
about-peeps.php
94 lines (85 loc) · 3.6 KB
/
about-peeps.php
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
<?php
$pageTitle = 'About Peeps';
include_once( 'includes/header.php' );
?>
<h1 class="text-center">SteamLUG Admins</h1>
<section id="peeps">
<article class="panel panel-default person">
<header class="panel-heading">
<h3 class="panel-title"><a href="https://twitter.com/johndrinkwater">johndrinkwater</a></h3>
</header>
<div class="panel-body">
<img src="/avatars/johndrinkwater.png" />
<p>Hey! I’m John.</p>
</div>
</article>
<article class="panel panel-default person">
<header class="panel-heading">
<h3 class="panel-title">meklu</h3>
</header>
<div class="panel-body">
<img src="/avatars/mnarikka.png" />
<p>A consumer of copious quantities of ammonium chloride and a lazy perfectionist. All my projects are eternal.</p>
</div>
</article>
<article class="panel panel-default person">
<header class="panel-heading">
<h3 class="panel-title"><a href="https://twitter.com/beansmyname">bean{,s}</a></h3>
</header>
<div class="panel-body">
<img src="/avatars/beansmyname.png" />
<p>I'm bean or beans or both at the same time. I'm the pink one. Best traits: looking cute, tasting sweet and having a creamy inside.</p>
</div>
</article>
<article class="panel panel-default person">
<header class="panel-heading">
<h3 class="panel-title">Nemoder</h3>
</header>
<div class="panel-body">
<img src="/avatars/Nemoder.png" />
<p>I'm being eaten by zombies as I write this.</p>
</div>
</article>
<article class="panel panel-default person">
<header class="panel-heading">
<h3 class="panel-title">Tele42</h3>
</header>
<div class="panel-body">
<img src="/avatars/Tele42.png" />
<p>"Here's an interesting little notion. Did you realize that most people's lives are governed by telephone numbers?"</p>
</div>
</article>
<article class="panel panel-default person">
<header class="panel-heading">
<h3 class="panel-title"><a href="https://twitter.com/Corben78">Corben</a></h3>
</header>
<div class="panel-body">
<img src="/avatars/Corben78.png" />
<p>Gamer, Linux enthusiast, developer, administrator, SteamLUG cast editor.</p>
<p>My first contact with Linux has been at University, from there on the fascination grew. Now I'm using Linux as my primary OS where possible. Nevertheless I'm also using OS X and Windows, as my motto in this case is, to get the best of all worlds. So I'm also a big fan of platform independent software.</p>
<p>Here are some recommendations: <a href="https://sublimetext.com">Sublime Text</a>, <a href="https://justgetflux.com">F.Lux</a>, <a href="https://symless.com/synergy">Synergy</a></p>
<p>Never give up, never surrender!</p>
</div>
</article>
<article class="panel panel-default person">
<header class="panel-heading">
<h3 class="panel-title"><a href="http://constexpr.org/">ds</a></h3>
</header>
<div class="panel-body">
<img src="/avatars/ds.png" />
<p>Me. Somtimes I code. Also, I think that Linux thing is kinda cool.</p>
<p>Also known as <em>dscharrer</em> when a unique name is required.</p>
</div>
</article>
<article class="panel panel-default person">
<header class="panel-heading">
<h3 class="panel-title"><a href="https://twitter.com/hmccio">Dora Coder</a></h3>
</header>
<div class="panel-body">
<img src="/avatars/doracoder.png" />
<p>Yep, that's my name. Linux user (obviously), broadcaster, and wine-gaming heathen. Loves many things.</p>
</div>
</article>
<section>
<?php
include_once( 'includes/footer.php' );