-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (37 loc) · 1.32 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
---
description: >
I'm a Berlin-based iOS and Ruby on Rails developer working for nerdgeschoss. Also I'm organizing the monthly swift.berlin meetup and I'm obsessed with application architecture and maintainable code bases in Swift and Ruby on Rails.
thumbnail: /img/profile.jpg
---
<div class="container text-centered">
<h1>Jens <em>Ravens</em></h1>
<img src="/img/profile.jpg" class="profile" />
<p class="lead">
I'm a Berlin-based iOS and Ruby on Rails developer working for
<a href="http://nerdgeschoss.de">nerdgeschoss</a>. I'm obsessed with
application architecture and maintainable code bases in Swift and Ruby on
Rails.
</p>
<p class="lead">
You can follow me on <a href="https://twitter.com/JensRavens">Twitter</a> or
send me an <a href="mailto:[email protected]">email</a>.
</p>
</div>
<div class="container">
{% for post in site.posts %}
<article class="article-preview">
<h2>{{ post.title }}</h2>
{% if post.series %}
<a href="/series/{{post.series | slugify}}" class="article-series">
{{post.series}} - {% if post.series-subtitle %} {{post.series-subtitle}}
{% else %} Part {{post.series-index}} {% endif %}
</a>
{% endif %}
<p>
{{ post.abstract }}
<br />
<a href="{{ post.url }}">read more</a>
</p>
</article>
{% endfor %}
</div>