summaryrefslogtreecommitdiffstats
path: root/talks.html
blob: 97a7f9b511741b0b9feede5c90b9dec259399a79 (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
{% meta %}
  title: Talks
{% endmeta %}

{% block content %}
<div class="talks">
    <img src="{{ url_for('static/images/talks-logo.png') }}" alt="Spline Talks Logo" />
    <h1>Spline Talks</h1>
    <hr />

    <p>Spline Talks ist eine regelmäßige offene, studentische Vortragsreihe von Spline rund um Software, Hardware und andere Informatik-nahe Themen.</p>


    <h2>Aktuell</h2>
    <div class="talks-box center">
        <div>
            <p> <a href="https://www.spline.de/talks/2015/12/08/Einf%C3%BChrungLua/">8.Dezember.2015: Einführung in die Programmiersprache Lua</a> </p>
        </div>
    </div>


    <h2>Kontakt</h2>
    <p>Twitter: <a href="http://twitter.com/splinetalks">@splinetalks</a></p>

    <p>
        Mailingliste:
        <a href="mailto:talks@lists.spline.inf.fu-berlin.de">talks@lists.spline.inf.fu-berlin.de</a>
        (<a href="https://lists.spline.inf.fu-berlin.de/mailman/listinfo/talks">subscribe</a>)
    </p>

    <p>
        FU Berlin, <a href="http://inf.fu-berlin.de/">Institut für Informatik</a>,
        Raum K60, Takustr. 9, 14195 Berlin
        (<a href="http://www.openstreetmap.org/export/embed.html?bbox=13.28831,52.4532,13.29934,52.45875&amp;layer=mapnik&amp;marker=52.45598%2C13.29721">Map</a>)
    </p>


    <h2>FAQ</h2>
    <dl>
        <dt>Wie kann ich selbst einen Vortrag halten?</dt>
        <dd>Wir freuen uns immer über Vorschläge. Setze dich einfach mit uns
        in Verbindung (am besten über die Mailingliste) und wir sprechen
        alles weitere ab.</dd>

        <dt>Wann geht es los? (s.t. oder c.t.)</dt>
        <dd>c.t.</dd>

        <dt>Gibt es Aufzeichnungen?</dt>
        <dd>Wir stellen in aller Regel nach dem Vortrag die Slides ins Netz.
        Audio- und/oder Videoaufzeichnungen gibt es (bisher) nicht.</dd>
    </dl>


    <h2>Liste aller Vorträge</h2>
    <ul id="talks-index">
        {% for talks in site.posts|filter_by_path('talks/')|sort(attribute='date')|reverse %}
        <li>
            <a href="{{ talks.get_url() }}">
    	    {{ talks.date.strftime('%Y-%m-%d') }}:
    	    {{ talks.title|typogrify }}
    	</a>
        </li>
        {% endfor %}
    </ul>
</div>
{% endblock %}
~