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.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/_talks.html b/_talks.html
new file mode 100644
index 0000000..ef3e21f
--- /dev/null
+++ b/_talks.html
@@ -0,0 +1,32 @@
+{% extends "_base.html" %}
+
+{% block content %}
+<div class="talks">
+ <img src="{{ url_for('static/images/talks-logo.png') }}" alt="Spline Talks Logo" />
+ <h1>Spline Talks</h1>
+ <p id="back-link">
+ <a href="{{ site.url }}/{{ entry.path.split("/")[0] }}">Zurück zur Übersicht</a>
+ </p>
+ <hr/>
+
+ <h2>
+ {{ entry.title|typogrify }}
+ <small>{{ entry.date.strftime('%d. %B %Y') }}, {{entry.time}}, {{entry.location}}</small>
+ </h2>
+
+ <p>{{ entry.abstract|markdown|typogrify }}</p>
+
+ <h2>Vortragende</h2>
+ <p>{{entry.lecturer|markdown|typogrify }}</p>
+
+ {% if entry.slides %}
+ <h2>Slides</h2>
+ <p><a href="{{ url_for("static/talks/" + entry.slides) }}">{{entry.slides}}</a></p>
+ {% endif %}
+
+ {% if entry.links %}
+ <h2>Links</h2>
+ <p>{{ entry.links|markdown|typogrify }}</p>
+ {% endif %}
+</div>
+{% endblock %}