init without trunk
This commit is contained in:
parent
ed24ac4994
commit
bb809e7233
14652 changed files with 177862 additions and 94817 deletions
20
app/Resources/views/default/components/breadcrumb.html.twig
Normal file
20
app/Resources/views/default/components/breadcrumb.html.twig
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{% if breadcrumb_entries is not empty %}
|
||||
<div class="breadcrumb-holder">
|
||||
<ol class="breadcrumb" itemprop="breadcrumb" itemscope="" itemtype="http://schema.org/BreadcrumbList">
|
||||
<li itemscope="" itemprop="itemListElement" itemtype="http://schema.org/ListItem">
|
||||
<a class="on" itemprop="item" title="STERN TOURS" href="{{ app.request.getSchemeAndHttpHost() }}">
|
||||
<span itemprop="name">STERN TOURS</span></a>
|
||||
<meta itemprop="position" content="1">
|
||||
</li>
|
||||
{% for breadcrumb_entry in breadcrumb_entries %}
|
||||
{# @var breadcrumb_entry \AppBundle\Entity\BreadcrumbEntry #}
|
||||
<li itemscope="" itemprop="itemListElement" itemtype="http://schema.org/ListItem">
|
||||
<a itemprop="item" title="{{ breadcrumb_entry.title }}" href="{{ app.request.getSchemeAndHttpHost() }}{{ breadcrumb_entry.url }}">
|
||||
<span itemprop="name">{{ breadcrumb_entry.title }}</span>
|
||||
</a>
|
||||
<meta itemprop="position" content="{{ loop.index0 + 2 }}">
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ol>
|
||||
</div>
|
||||
{% endif %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue