summaryrefslogtreecommitdiffstats
path: root/_talks.html
blob: ef3e21fcfad02041cc1375ea15b0e3ae8946419c (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
{% 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 %}