summaryrefslogtreecommitdiffstats
path: root/index.html
blob: 8222a8a068e967e8a8e099cfc3675ceda6781064 (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
60
61
62
63
64
65
66
67
68
69
{% meta %}
  title: Home
  top_link: 1
{% endmeta %}

{% block content %}
<div class="row-fluid overview">
  <div class="span4">
    <h2>news</h2>
    {% for post in site.posts|batch(3)|first %}
    <p>
      {{ post.date.strftime('%d.%m.%Y') }}
      -
      <a href="{{ post.get_url() }}">{{ post.title }}</a>
    </p>
    {% endfor %}
  </div>

  <div class="span8 about">
    <h2>info</h2>
    <p>
      Wir sind Menschen, die Spaß am <i>Hacken</i> von
      <a
href="https://fsfe.org/about/basics/freesoftware.de.html">freier
Soft-</a> und <a href="https://de.wikipedia.org/wiki/Freie_Hardware">Hardware</a>
      haben.
    </p>
    <p>
      Zu finden sind wir im <b>Raum K60</b> des
      <a href="https://inf.fu-berlin.de">Instituts für Informatik</a> der
      <a href="https://www.fu-berlin.de">FU Berlin</a>
      (<a href="https://www.openstreetmap.org/?mlat=52.456076&mlon=13.297478&zoom=16">Karte</a>).
    </p>
    <p>
      Desweiteren auch im IRC auf Libera.Chat im Channel <a href="irc://irc.libera.chat/spline">#spline</a>.
    </p>
  </div>
</div>

<div id="services">
  <h2>services</h2>
  {% for row in site.pages|filter_by_path('services/')|sort(attribute='title')|batch(2) %}
    <div class="row-fluid service-row">
      {% for page in row %}
        <div class="span6">
          <div class="row-fluid">
            <div class="img span">
              <img src="{{page.logo_url}}" alt="{{page.title}}" />
            </div>

            <div class="desc link-hover span8">
              <a href="{% if page.link %}{{page.link}}{% else %}{{page.get_url()}}{% endif %}">
                <span class="link"></span>
                {{page.title}}
              </a>

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

{% endblock %}