┌─── Page 1 & 2 ──────────────────────┐
│ │
│ ┌── Base A ───────────┐ │
- │ │ ┌─────────────────┐ │ │
- │ │ │ Content 1, ... │ │ │
+ │ │ ┌── content1 ─────┐ │ │
+ │ │ │ content for p1 │ │ │
│ │ └─────────────────┘ │ │
- │ │ ┌─────────────────┐ │ │
- │ │ │ Content 1, ... │ │ │
+ │ │ ┌── content2 ─────┐ │ │
+ │ │ │ content for p1 │ │ │
│ │ └─────────────────┘ │ │
│ └─────────────────────┘ │
│ │
{% block base %}
{% inline %}
- {% extends "base_a.twig" %}
+ {% extends "base_A.twig" %}
{% block content1 %}
Content 1 for page 2
{% endinline %}
{% endblock %}
-And here is the code for ``base_a.twig``:
+And here is the code for ``base_A.twig``:
.. code-block:: jinja