summaryrefslogtreecommitdiffstats
path: root/talks.html
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2015-05-24 03:05:46 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2015-05-24 03:50:47 +0200
commitd513f2b4a35fd21569127aa6a66e8e457deb48d4 (patch)
treeccd86acf8f8bffc957dca9cd60d7ad3609cb8add /talks.html
parentb1cd71548baf0080aeb657e519282b1dcf849e70 (diff)
downloadwww-d513f2b4a35fd21569127aa6a66e8e457deb48d4.tar.gz
www-d513f2b4a35fd21569127aa6a66e8e457deb48d4.tar.bz2
www-d513f2b4a35fd21569127aa6a66e8e457deb48d4.zip
talks: Initial conversion of the separate webpage
Diffstat (limited to 'talks.html')
-rw-r--r--talks.html67
1 files changed, 67 insertions, 0 deletions
diff --git a/talks.html b/talks.html
new file mode 100644
index 0000000..cfce8cc
--- /dev/null
+++ b/talks.html
@@ -0,0 +1,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>
+ Aktuell ist leider kein Vortrag geplant.
+ </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 %}
+~