{% set title = article|os_trans("title") %} {% set desc = article|os_trans("description") %} {% set menu = 'articles' %} {% if article.banner %} {% set thumbnail = article.banner.thumbnail %} {% set banner = asset(article.banner.file) %} {% endif %} {% extends 'Default/base.html.twig' %} {% block titlebox %}
{% block title %}

{{title is defined ? title}}

{% endblock title %}
{% endblock titlebox %} {% block content %}
{{ article|os_trans("content")|raw }}
{% if article.biblio and article.biblio.files|length %}

Documents joints

{% for o in article.biblio.files %} {% set doc = o %} {% set t = doc.target|split(".") %} {% set ext = t[t|length-1]|upper %} {% set readLink = path("file-read",{id:doc.id}) %} {% set downloadLink = path("file-download",{id:doc.id}) %} {% set action = null %} {% set type = null %} {% if doc.mimetype|lower == 'application/pdf' %} {% set action = 'os-read' %} {% set type = 'pdf' %} {% elseif 'image' in doc.mimetype|lower %} {% set action = 'os-image' %} {% set type = 'image' %} {% elseif 'video' in doc.mimetype|lower %} {% set action = 'os-video' %} {% set type = 'video' %} {% elseif 'doc' in doc.mimetype|lower %} {% set type = 'word' %} {% elseif 'xls' in doc.mimetype|lower or 'xlxs' in doc.mimetype|lower or 'csv' in doc.mimetype|lower %} {% set type = 'excel' %} {% endif %}
{% set doc = o %}

{{doc.name ? doc.name : doc.source}}

{{doc.formatSize}} | {{doc.reading|number_format}} lect. | {{doc.downloads|number_format}} téléch.
{% endfor %}
{% endif %} {% if article.youtube %}

Suivez la vidéo

{% endif %} {% if article.album and article.album.pictures|length %}

{{article.album.title ? article.album.title : "Album photos"}}

{% for o in article.album.pictures %}
{% endfor %}
{% endif %} {% if article.flickr %}

Album photos

{% endif %}
{% endblock %}