{% extends 'site.html' %} {% block title %}{{ article.title }}{% endblock %} {% block content %} {% include 'knowledgebase_leftbar.html' %}


{{ article.title }}
{{ LANG.POSTED_BY_ON|replace({'%author%':article.author, '%date%':displayDate(article.date)}) }}
{{ article.content|raw }}
{% if attachments|is_array %}
{{ LANG.ATTACHMENTS }}
{% for file in attachments %}
{{ file.name }} ({{ file.filesize }})
{% endfor %} {% endif %}
{% endblock %}