This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<img src="[[?x0x::x[[S4]]x::http://www.myclodomain.com/images/wrpr/::../images/wrpr/]]logo.png" alt="My Organization" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<t:if test="title == 'Search Results' || matches(title, 'Send to Friend:.*')"> | |
<div id="maincol"><h1 class="title">${title}</h1> | |
</t:if> | |
<div class="templateComponent" id="body"></div> | |
<t:if test="title == 'Search Results' || matches(title, 'Send to Friend:.*')"> | |
</div> | |
</t:if> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<t:set id="today" value="days(0)" /> | |
<p>Today is ${today}.</p> | |
<p>Today is <t:value id="today" type="date" format="EEEE, MMM d yyyy">Jan 1, 2005</t:value>.</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<t:if test="year(start_date) != year(end_date)"><t:value id="start_date" format="5" /> - <t:value id="end_date" format="5" /></t:if> | |
<t:else> | |
<t:if test="month(start_date) == month(end_date)"><t:value id="start_date" format="MMMMMMMMMM d" /> - <t:value id="end_date" format="d, yyyy" /></t:if> | |
<t:else><t:value id="start_date" format="MMMMMMMMMM d" /> - <t:value id="end_date" format="5" /></t:else> | |
</t:else> | |
</t:if> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<t:set id="pdate" value="year(date)" /><t:set id="pdate" value="concat(pdate, '-')" /><t:set id="temp1" value="month(date)+1" /> | |
<t:set id="pdate" value="concat(pdate, temp1)" /><t:set id="pdate" value="concat(pdate, '-')" /> | |
<t:set id="temp2" value="day(date)" /><t:set id="pdate" value="concat(pdate, temp2)" /> | |
<time datetime="${pdate}"><t:value id="date" format="5" /></time> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<t:if test="category-field-name.length > 0"> | |
<t:list id="category-field-name"> | |
<a href="list-page.html?category-field-name=${name}">${label}</a><t:if test="index != length">,</t:if> | |
</t:list> | |
</t:if> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<t:if test="length > 0"> | |
<ul><t:list> | |
<t:set id="myClass" value="''" /> | |
<t:if test="index == 1"><t:set id="myClass" value="'first'" /></t:if> | |
<t:if test="index == length"><t:set id="myClass" value="concat(myClass, ' last')" /></t:if> | |
<t:set id="myClass" value="trim(myClass)" /> | |
<t:if test="!isNull(myClass)"><li class="${myClass}"></t:if> | |
<t:else><li></t:else> | |
<a href="${url}">${title}</a><p>${description}</p> | |
</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
div.odd { background: #eee; } | |
div.even { background: #fff; } | |
</style> | |
<div class="striped"> | |
<t:list> | |
<t:if test="index%2 == 1"><div class="odd"></t:if> | |
<t:else><div class="even"></t:else> | |
${title} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<t:if test="length > 0"> | |
<t:set id="lastdate" value="''" /> | |
<t:list> | |
<t:if test="month(date) != lastdate"><h3><t:value id="date" format="MMMMMMMMM" /></h3></t:if> | |
<a href="${url}">${title}</a> | |
... | |
<t:set id="lastdate" value="month(date)" /> | |
</t:list> | |
</t:if> |
OlderNewer