1<#include "${templatesPath}/IM-BASE">
2<#include "${templatesPath}/IM-BASE-BREADCRUMB-HELPER">
3<#include "${templatesPath}/IM-BASE-JOURNAL-LANGUAGE-PROPERTIES">
4<#include "${templatesPath}/IM-BASE-COMMON-LANGUAGES">
5
6<div class="py-2 mb-2 rastro-migas">
7 <span class="RS_MESSAGE sr-only"><@language key='language-esta-en'/>:</span>
8 <ul class="p-0 m-0">
9 <#if siteFriendlyUrl == "/imserso" >
10 <li class="elemento-0 d-inline-block"><a class="rastro-link" href="/web/imserso/inicio" title="${lang_ir_a} Inicio"><@language key='language-inicio'/></a><span class="rs_skip_always rs_pause">></span></li>
11 </#if>
12 <#if entries?has_content>
13 <#assign x = 0>
14 <#list entries as curEntry>
15 <#--<#if !curEntry.isBrowsable()>
16 <#continue >
17 </#if>-->
18 <#assign layoutBreadCrumbEntry = getLayoutBreadCrumbEntry(curEntry) />
19 <#--<#if layoutBreadCrumbEntry?has_content && layoutBreadCrumbEntry.isHidden()>
20 <#continue >
21 </#if>-->
22
23 <#assign breadCrumbEntryName = layoutBreadCrumbEntry />
24
25 <#if layoutBreadCrumbEntry?has_content>
26 <#if !mostrarEnCaminoMigasExpandoAttribute(layoutBreadCrumbEntry, true) >
27 <#continue >
28 </#if>
29 </#if>
30
31 <#assign x++>
32 <#assign breadCrumbEntryName = getLayoutNameBreadCrumbEntry(curEntry, layoutBreadCrumbEntry) />
33 <#-- Icono layout -->
34
35 <#-- // -->
36
37 <#if curEntry?is_last>
38 <li class="active breadcrumb-text-truncate d-inline-block breadcrumb-text-truncate">${breadCrumbEntryName}
39 <#assign iconLayoutUrl = getPageIconLayout(layoutBreadCrumbEntry) />
40 <#if iconLayoutUrl?has_content>
41 <img src="${iconLayoutUrl}" alt="<@language key='language-pagina-disponible-lenguaje-signos'/>" title="<@language key='language-pagina-disponible-lenguaje-signos'/>">
42 </#if>
43 </li>
44 <#else>
45 <li class="elemento-${x} d-inline-block">
46 <a href="${curEntry.getURL()}" class="rastro-link breadcrumb-text-truncate" title="${lang_ir_a} ${curEntry.getTitle()}">${breadCrumbEntryName}
47 <#assign iconLayoutUrl = getPageIconLayout(layoutBreadCrumbEntry) />
48 <#if iconLayoutUrl?has_content>
49 <img src="${iconLayoutUrl}" alt="<@language key='language-pagina-disponible-lenguaje-signos'/>" title="<@language key='language-pagina-disponible-lenguaje-signos'/>">
50 </#if>
51 </a>
52 <span class="rs_skip_always rs_pause"><#sep>></#sep></span>
53 </li>
54 </#if>
55 </#list>
56 </#if>
57 </ul>
58</div>