view docs/templates/section-page.html @ 1169:978ed6deea91

tests: Add ability to test different expected outputs based on Python version. Similar to the previous change, there was also a change in what gets escaped by `urllib.parse.quote` (as in: the tilde sign ('~') stopped being escaped). So now we need to be able to test different outputs in the tests, yay again.
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 04 Oct 2019 11:15:11 -0700
parents fd95fef51705
children
line wrap: on
line source

{% extends "default.html" %}

{% block content %}
<div class="container" id="content">
    <div class="row">
        <section class="col-md-8">
        {{ content|safe }}
        </section>
        <aside class="col-md-4">
            {% include 'inc/family-sidebar.html' %}
        </aside>
    </div>
</div>
{% endblock %}