{% extends 'layout.twig' %}
{% block title %}{{ category.name }} — {{ brand.name }}{% endblock %}
{% block content %}
    <section class="page-head">
        <div class="container">
            <p class="breadcrumbs"><a href="{{ app_url('/kb') }}">Knowledge Base</a> / {{ category.name }}</p>
            <h1>{{ category.name }}</h1>
            {% if category.description %}<p class="lead">{{ category.description }}</p>{% endif %}
        </div>
    </section>
    <section class="container">
        <ul class="article-list">
            {% for a in articles %}
                <li>
                    <a href="{{ app_url('/kb/article/' ~ a.slug) }}"><strong>{{ a.title }}</strong></a>
                    {% if a.excerpt %}<p class="muted">{{ a.excerpt }}</p>{% endif %}
                </li>
            {% else %}
                <p class="muted">No articles yet in this category.</p>
            {% endfor %}
        </ul>
    </section>
{% endblock %}
