File:  [Repository] / ECHO_content / zpt / ECHO_resource_template_standard.zpt
Revision 1.4: download - view: text, annotated - select for diffs - revision graph
Thu Jun 10 12:27:22 2004 UTC (20 years ago) by jdamerow
Branches: MAIN
CVS tags: HEAD
standart templates geƤndert

  
<table cellpadding="3" width="95%" border=0>
	<tr>
		
		<td>
			<!-- Label -->
			<!-- with link if there is one -->
			<span tal:condition="here/link">
					<b><a tal:content="structure here/getLabel" tal:attributes="href python:here.absolute_url()" target="_blank">
						label
					</a></b>
			</span>
			
			<!-- without link if there isn't one -->
			<span tal:condition="not:here/link">
				<u>
					<b tal:content="structure here/getLabel">
						label</b>
				</u>
			</span>
			<!-- -->
			
		</td>
	</tr>
	
	<tr>
		
		<td>
			<!-- Title -->
			<b tal:content="structure here/getTitle">
				Title
			</b>
			<!-- -->
		</td>
	</tr>
	
	<!-- Description if there ist one -->
	<tr tal:condition="here/description">
		
		<td>
			<span tal:replace="structure here/description">
				DESCRIPTION
			</span>
		</td>
	</tr>
	<!-- -->
	
	<!-- Copyrights -->
	
	<tr tal:condition="not:python:here.getCopyrightsHTML()=='ERROR'">
		<td align=right>
			<span tal:repeat="item python:here.getCopyrightsHTML()">
				<span tal:content="structure python:item[0]"/>
			</span>
		</td>
	</tr>
	
	<!-- -->
	
	
	<tr tal:condition="python:here.getSubCols(subColTypes=['ECHO_externalLink'])">
		
		<td>
			<!-- Lists externalLinks if there are some -->
			<table border="0">
				<tr>
					<td width="10px">
					</td>
					<td>
						<h4>
							Futher Information: 
						</h4>
					</td>
				</tr>
				<tr>
					<td>
					</td>
					<td>
						<div tal:omit-tag="" tal:repeat="item python:here.getSubCols(subColTypes=['ECHO_externalLink'])">
							<div tal:replace="structure item/content_html" />
						</div>
					</td>
				</tr>
			</table>
			<!-- -->
		</td>
	</tr>
	
</table>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>