forked from swift-berlin/swift-berlin.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.html
77 lines (73 loc) · 2.34 KB
/
archive.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
---
layout: default
permalink: /archive/
---
<div class="container">
<h1>swift.berlin Archives</h1>
<div class="row">
{% for post in site.posts %}
{% for speaker in post.speakers %}
<div class="col-sm-4 speaker">
<img src="/img/speakers/{{speaker.image}}.jpg">
<div class="speaker-info">
<h3>{{speaker.name}}</h3>
<p><strong>{{speaker.title}}</strong></p>
<p>{{speaker.abstract}}</p>
<p>{{speaker.about}}</p>
<p class="links">
{% for link in speaker.links %}
<a href="{{link.url}}" target="new">{{link.name}}</a>
{% endfor %}
</p>
</div>
</div>
{% endfor %}
{% endfor %}
</div>
</div>
<section id="signup" class="signup">
<form method="post" action="http://nerdgeschossberlin.us7.list-manage1.com/subscribe/post?u=908a2b4a2459206128cbf70df&id=882566a362" name="mc-embedded-subscribe-form">
<div class="container">
<div class="row">
<div class="col-sm-8">
<input type="text" name="EMAIL" placeholder="Enter your e-mail" spellcheck="false">
</div>
<div class="col-sm-4">
<button class="btn btn-large btn-danger" type="submit">Subscribe to our newsletter</button>
</div>
</div>
</div>
</form>
</section>
<secion id="contact">
<div class="container">
<div class="row">
<div class="col-sm-3">
<h3>nerdgeschoss GmbH</h3>
<p>
Wilhelmstraße 41<br>
D-10963 Berlin<br>
+49 30 36 42 86 58
</p>
<p>
<a href="http://nerdgeschoss.de/contact/">Impressum</a>
</p>
</div>
<div class="col-sm-4">
<h3>Help</h3>
<p>Need help? Don’t hestiate to ask us something. Email us directly at
<a href="#">[email protected]</a>.
You can checkout our <a href="http://nerdgeschoss.de">website</a> or the <a href="http://www.meetup.com/swift-berlin/events/187497112/">meetup group</a>.
</p>
</div>
<div class="col-sm-3">
<h3 id="archive">Archive</h3>
<p>
{% for post in site.posts %}
<a href="{{ post.url | prepend: site.baseurl }}">{{post.title}} @ {{post.location.name}}</a><br>
{% endfor %}
</p>
</div>
</div>
</div>
</secion>