Skip to content
Snippets Groups Projects
firmware.html 553 B
Newer Older
{% extends "base.html" %}


{% block content %}
<div class="container" >
    <div class="page-header" >
        <h1>{{ content.content_title }}</h1>
    </div>
    {{ content.content_body }}

    {% with contents=context.contents.filter(path__startswith="firmware/v").order_by("date") %}
    {% for content in contents %}
    <h2>{{content.content_title}}</h2>
    {% if content.date is not none%}
    <p>
        <em>{{ content.date }}</em>
    </p>
    {% endif %}
    {{content.content_body}}
    {% endfor %}
    {% endwith %}
</div>
{% endblock %}