10 lines
268 B
Twig
10 lines
268 B
Twig
{# This file demonstrates using most of the index.twig template and modifying
|
|
just a small part. See `search.twig` for an example of another approach #}
|
|
|
|
{% extends "index.twig" %}
|
|
|
|
{% block content %}
|
|
<h3>This is my archive</h3>
|
|
{{ parent() }}
|
|
{% endblock %}
|