{% extends "base.html" %} {% block title %}{{ article.title }} - {{ super() }}{% endblock title %} {% block description %}{{ article.content|striptags|truncate(200)|escape }}{% endblock description %} {% block keywords %}{% for tag in article.tags|sort %}{{ tag }}{% if not loop.last %}, {% endif %}{% endfor %}{% endblock keywords %} {% block headerstyle %} {% if article.illustration %}
{% else %}
{% endif %} {% endblock headerstyle %} {% block header %}
LIP6 Sorbonne Universite CNRS

{{ article.title }}

{{ NEST_ARTICLE_HEADER_BY }} {% for author in article.authors %}{{ author }}{% if not loop.last %}, {% endif %}{% endfor %}, {{ article.locale_date }}{% if article.modified %}, {{ NEST_ARTICLE_HEADER_MODIFIED }} {{ article.locale_modified }}{% endif %}, {{ NEST_ARTICLE_HEADER_IN }} {{ article.category|capitalize }}

{% for tag in article.tags|sort %}{{ tag }}{% if not loop.last %}, {% endif %}{% endfor %}

{% endblock header %} {% block content %}
{{ article.content }} {% if article.related_posts %}

Articles connexes

{% for related_post in article.related_posts %}
{{ related_post.locale_date}}
{{ related_post.title }}
{% endfor %}
{% endif %} {% include "disqus_script.html" %}
{% endblock %}