summaryrefslogtreecommitdiffstats
path: root/index.html
blob: 9f331d84c99816fd6faa4d21be8690dc7fcc3fea (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
53
54
55
56
57
58
59
{% 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') }}">
        <div class="link">
          <div class="grid_2 alpha">
            <img src="{{page.logo_url}}" alt="{{page.title}}" />
          </div>

          <div class="gird_6 omega">
            <a href="{{page.get_url()}}">
              <span class="link"></span>
              {{page.title}}
            </a>

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

{% endblock %}