openrat-cms

# OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs

browse.tpl.src.xml (1285B)


      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 	<page>
      4 		<table>
      5 			<row class="headline">
      6 				<column>
      7 					<text key="GLOBAL_TYPE"></text>
      8 					<text raw="_/_"></text>
      9 					<text key="GLOBAL_NAME"></text>
     10 				</column>
     11 				<column>
     12 					<text key="GLOBAL_LASTCHANGE"></text>
     13 				</column>
     14 			</row>
     15 			<if present="up_url">
     16 				<row class="data">
     17 					<column width="50%" colspan="8">
     18 						<link type="html" url="var:up_url">
     19 							<image type="folder"></image>
     20 							<text raw="__.._____________________"></text>
     21 						</link>
     22 					</column>
     23 				</row>
     24 			</if>
     25 			<list list="object" extract="true">
     26 				<row class="data">
     27 					<column class="clickable">
     28 						<link type="html" url="var:url" title="var:desc" class="var:class">
     29 							<image type="var:icon"></image>
     30 							<text var="name"></text>
     31 							<text raw="_"></text>
     32 						</link>
     33 					</column>
     34 					<column>
     35 						<date date="var:date"></date>
     36 					</column>
     37 				</row>
     38 			</list>
     39 			<if empty="object">
     40 				<row>
     41 					<column colspan="2">
     42 						<text text="GLOBAL_NOT_FOUND"></text>
     43 					</column>
     44 				</row>
     45 			</if>
     46 		</table>
     47 	</page>
     48 </output>