{% extends "base.html" %} {% block head %} {{ super() }} {% if article.description %} {% endif %} {% import 'translations_meta.html' as translations_meta with context %} {{ translations_meta.translations_for(article) }} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block title %} {{ article.title }} - {{ SITESEO }} {% endblock %} {% block content %}

{{ article.title }}

{% if article.category.name == "talks-posters" %} {{ article.location }} -- {% if article.conference_url %} {% endif %} {{ article.conference_name }} {% if article.conference_url %} {% endif %} {% if article.conference_date_start %} ({{ article.conference_date_start|strftime(DATE_HACK_FORMATS[DEFAULT_LANG]["yearless"]) }} - {{ article.conference_date_end|strftime(DATE_HACK_FORMATS[DEFAULT_LANG]["short"]) }}) {% endif %} {% endif %} {% if article.category.name == "conferences" %} {{ article.conference_date_start|strftime(DATE_HACK_FORMATS[DEFAULT_LANG]["yearless"]) }} -- {{ article.conference_date_end|strftime(DATE_HACK_FORMATS[DEFAULT_LANG]["short"]) }} in {{ article.location }} Role: {{ article.role }} {% endif %} {% if article.category.name == "teaching" %} {{ article.class_year_begin }} -- {% if article.class_year_end %}{{ article.class_year_end }}{% else %}Now{% endif %} {% endif %} {% if article.slides %} [ Slides ] {% endif %} {% if article.poster %} [ Poster ] {% endif %} {% if article.video %} [ Video ] {% endif %} {% if article.demo_ext_link %} [ Demo ] {% endif %} {% if article.demo_int_link %} [ Demo ] {% endif %} {% if article.conference_url %} [ Conference website ] {% endif %} {% if article.course_doc_link %} [ Course material ] {% endif %} {% if article.course_ext_link %} [ Course content ] {% endif %} {% if article.git %} [ Git ] {% endif %}

{% if article.img %} {% endif %} {{ article.content }}

Category: {{ article.category.name }}
{% if article.tags|count != 0 %} Tags: {% for tag in article.tags %} {{ tag }} {% endfor %} {% endif %}

{% endblock %} {% block end_content %} {% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }} {% endblock %}