summaryrefslogtreecommitdiffstats
path: root/index.html
blob: e6bc8d0ee816b72a1ea6cac36bb45c8289544394 (plain)
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
{% meta %}
  title: Home
  top_link: 3
{% endmeta %}

{% block content %}
<div id="content-top">
  <div class="grid_7 alpha">
    <h2>news</h2>
    {% for post in site.posts|batch(3)|first %}
    <p>
      <a href="{{ post.get_url() }}">{{ post.title }}</a>
      -
      {{ post.date.strftime('%Y, %B %d') }}
    </p>
    {% endfor %}
  </div>
  <div class="grid_9 omega about">
    <h2>about</h2>
    <p>
      Wir sind Menschen die Spaß am <i>Hacken</i> von <b>freier Software</b> haben.<br />
      Zu finden sind wir im <b>Raum K40</b> des 
      <a href="http://inf.fu-berlin.de">Instituts für Informatik</a> der
      <a href="http://www.fu-berlin.de">FU Berlin</a>.
      Desweiteren auch virtuell im IRC auf Freenode im Channel <b>#spline</b>.
    <p>
  </div>
</div>

<div class="clear"></div>
<div id="services">
  <h2>services</h2>
  <ul class="grid_16">
  {% for page in site.pages|sort(attribute='title') %}
    {% if page.path.startswith('services/') %}
      <li class="grid_8 {{ loop.cycle('omega', 'alpha') }} link">
        <a href="{{page.get_url()}}" class="box">
          <img src="{{page.logo_url}}" alt="{{page.title}}" />

          <h4>{{page.title}}</h4>

          <p>
            {{page.description}}
          </p>
        </a>
      </li>
    {% endif %}
  {% endfor %}
  </ul>
</div>

{% endblock %}