{% extends 'site.html' %} {% block title %}{{ LANG.KNOWLEDGEBASE }} > {{ article.title }}{% endblock %} {% block content %} {% include 'knowledgebase_searchbox.html' %}
{{ LANG.KNOWLEDGEBASE }} {% if cat_id != 0 %}: {{ cat_title|raw }}{% endif %}
{{ article.title }}
{{ LANG.POSTED_BY_ON|replace({'%author%':article.author, '%date%':displayDate(article.date)}) }}
{{ article.content|raw }}
{% if attachments|is_array %}
{{ LANG.ATTACHMENTS }}
{% for attachment in attachments %}
{{ attachment.name }} ({{ attachment.filesize }})
{% endfor %} {% endif %} {% endblock %}