src/Company/BaseBundle/Resources/views/Index/other_page.html.twig
author cavaliet
Mon, 07 Jul 2014 17:23:47 +0200
changeset 122 d672f7dd74dc
parent 17 a16b5806e3f0
permissions -rwxr-xr-x
Added tag V00.17 for changeset ada5f3d8b5b4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9
41a9fa70a47b continue to implement example app
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
{# example of other page extending the company base template #}
41a9fa70a47b continue to implement example app
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
{% extends 'CompanyBaseBundle:Default:index.html.twig' %}
41a9fa70a47b continue to implement example app
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
41a9fa70a47b continue to implement example app
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
{% block content %}
41a9fa70a47b continue to implement example app
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
	<div id="content" class="span-24 last">
41a9fa70a47b continue to implement example app
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
	    <div id="inner_content">
41a9fa70a47b continue to implement example app
ymh <ymh.work@gmail.com>
parents:
diff changeset
     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
41a9fa70a47b continue to implement example app
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
	    </div>
41a9fa70a47b continue to implement example app
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
	</div>
41a9fa70a47b continue to implement example app
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
{% endblock %}