openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

path.tpl.src.xml (952B)


      1 <output xmlns="http://www.openrat.de/template" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      2 		xsi:schemaLocation="http://www.openrat.de/template ../../../../../../../template_engine/components/template.xsd">
      3 	<list list="${path}" extract="true">
      4 		<part class="act-clickable,breadcrumb-item,breadcrumb-path">
      5 			<link type="open" action="${action}" id="${id}">
      6 				<image action="${action}"/>
      7 				<!--<text value="${name}" />-->
      8 				<!-- without names for saving place -->
      9 			</link>
     10 			<image symbol="node-closed"/>
     11 		</part>
     12 	</list>
     13 
     14 	<part class="breadcrumb-item,breadcrumb-actual">
     15 		<if not="" empty="${parent}">
     16 			<link type="open" action="${parent.action}" id="${parent.id}" clickable="true">
     17 				<image menu="up" class="image--rightshift" />
     18 				<image action="${actual.action}"/>
     19 			</link>
     20 		</if>
     21 		<else>
     22 			<image action="${actual.action}"/>
     23 		</else>
     24 		<text class="breadcrumb-text" value="${actual.name}"/>
     25 	</part>
     26 </output>