| author | cavaliet |
| Mon, 07 Jul 2014 17:23:47 +0200 | |
| changeset 122 | d672f7dd74dc |
| parent 17 | a16b5806e3f0 |
| permissions | -rwxr-xr-x |
| 9 | 1 |
{# example of other page extending the company base template #} |
2 |
{% extends 'CompanyBaseBundle:Default:index.html.twig' %} |
|
3 |
||
4 |
{% block content %} |
|
5 |
<div id="content" class="span-24 last"> |
|
6 |
<div id="inner_content"> |
|
7 |
<p>This is a simple template extending the base template.</p> |
|
|
17
a16b5806e3f0
Little modification to enable routing from tag list.
cavaliet
parents:
9
diff
changeset
|
8 |
{% if tag_id %} |
|
a16b5806e3f0
Little modification to enable routing from tag list.
cavaliet
parents:
9
diff
changeset
|
9 |
<p>You passed the parameter tag_id = {{tag_id}}</p> |
|
a16b5806e3f0
Little modification to enable routing from tag list.
cavaliet
parents:
9
diff
changeset
|
10 |
{% endif %} |
| 9 | 11 |
</div> |
12 |
</div> |
|
13 |
{% endblock %} |