Yaffs site version 1.1
[yaffs-website] / vendor / twig / twig / test / Twig / Tests / Fixtures / exceptions / child_contents_outside_blocks.test
1 --TEST--
2 Exception for child templates defining contents outside blocks defined by parent
3 --TEMPLATE--
4 {% extends 'base.twig' %}
5
6 Content outside a block.
7
8 {% block sidebar %}
9     Content inside a block.
10 {% endblock %}
11 --TEMPLATE(base.twig)--
12 {% block sidebar %}
13 {% endblock %}
14 --EXCEPTION--
15 Twig_Error_Syntax: A template that extends another one cannot include contents outside Twig blocks. Did you forget to put the contents inside a {% block %} tag in "index.twig" at line 3?