[pLog-svn] r5307 - in templates/branches/lifetype-1.2: . delicious_fruit delicious_fruit/backups delicious_fruit/images

mark at devel.lifetype.net mark at devel.lifetype.net
Sat Apr 14 10:10:28 EDT 2007


Author: mark
Date: 2007-04-14 10:10:28 -0400 (Sat, 14 Apr 2007)
New Revision: 5307

Added:
   templates/branches/lifetype-1.2/delicious_fruit/
   templates/branches/lifetype-1.2/delicious_fruit/album.template
   templates/branches/lifetype-1.2/delicious_fruit/albums.template
   templates/branches/lifetype-1.2/delicious_fruit/archives.template
   templates/branches/lifetype-1.2/delicious_fruit/backups/
   templates/branches/lifetype-1.2/delicious_fruit/backups/footer.template_1176363794
   templates/branches/lifetype-1.2/delicious_fruit/backups/post.template_1176363973
   templates/branches/lifetype-1.2/delicious_fruit/backups/post.template_1176429156
   templates/branches/lifetype-1.2/delicious_fruit/commentarticle.template
   templates/branches/lifetype-1.2/delicious_fruit/error.template
   templates/branches/lifetype-1.2/delicious_fruit/footer.template
   templates/branches/lifetype-1.2/delicious_fruit/header.template
   templates/branches/lifetype-1.2/delicious_fruit/images/
   templates/branches/lifetype-1.2/delicious_fruit/images/Thumbs.db
   templates/branches/lifetype-1.2/delicious_fruit/images/arrow.png
   templates/branches/lifetype-1.2/delicious_fruit/images/compressed.gif
   templates/branches/lifetype-1.2/delicious_fruit/images/container_bg.jpg
   templates/branches/lifetype-1.2/delicious_fruit/images/date.jpg
   templates/branches/lifetype-1.2/delicious_fruit/images/demo_img.jpg
   templates/branches/lifetype-1.2/delicious_fruit/images/file.gif
   templates/branches/lifetype-1.2/delicious_fruit/images/folder.gif
   templates/branches/lifetype-1.2/delicious_fruit/images/form_bg.png
   templates/branches/lifetype-1.2/delicious_fruit/images/input_bg.png
   templates/branches/lifetype-1.2/delicious_fruit/images/menu.png
   templates/branches/lifetype-1.2/delicious_fruit/images/parentfolder.gif
   templates/branches/lifetype-1.2/delicious_fruit/images/sound.gif
   templates/branches/lifetype-1.2/delicious_fruit/images/video.gif
   templates/branches/lifetype-1.2/delicious_fruit/index.html
   templates/branches/lifetype-1.2/delicious_fruit/main.template
   templates/branches/lifetype-1.2/delicious_fruit/post.template
   templates/branches/lifetype-1.2/delicious_fruit/postandcomments.template
   templates/branches/lifetype-1.2/delicious_fruit/posttrackbacks.template
   templates/branches/lifetype-1.2/delicious_fruit/readme
   templates/branches/lifetype-1.2/delicious_fruit/resource.template
   templates/branches/lifetype-1.2/delicious_fruit/screenshot.jpg
   templates/branches/lifetype-1.2/delicious_fruit/searchresults.template
   templates/branches/lifetype-1.2/delicious_fruit/style.css
Log:
A new 1.2 template provided by Reic http://reic.twbbs.org/blog/2

Added: templates/branches/lifetype-1.2/delicious_fruit/album.template
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/album.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/album.template	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,82 @@
+   		{include file="$blogtemplate/header.template"} 
+
+<h2>{$locale->tr("albums")}</h2>
+
+<h3>{$album->getName()}</h3>
+<p>{$album->getDescription()}</p>
+
+<!-- album contents go here -->
+ 
+<div id="album">
+
+	<div class="clearer">&nbsp;</div>
+ 
+	<div class="album">
+	<a href="{$url->parentAlbumLink($album)}">
+    	<img src="{$url->getTemplateFile("images/parentfolder.gif")}" alt="{$locale->tr("parent")}" /></a>
+    	<p>{$locale->tr("parent")}</p>
+	</div>
+
+  {if $pager->getCurrentPage() == 1}
+	{assign var="counter" value=1}
+   	{assign var=children value=$album->getChildren()}
+   	{foreach from=$children item=childalbum}
+	<div class="album">
+   	<a href="{$url->albumLink($childalbum)}">
+   	<img src="{$url->getTemplateFile("images/folder.gif")}" alt="{$childalbum->getName()}" /></a>
+   	<p>{$childalbum->getName()} ({$childalbum->getNumResources()})</p>
+   		{assign var="counter" value="`$counter+1`"}
+   		{if $counter%3 == 0}
+   		{/if}
+	</div>
+   	{/foreach}
+  {/if}
+ 
+<!-- show the resources here -->
+
+ {** assign var=resources value=$album->getResources() **}
+ {** use the code above if you want to display all the resources at once, or leave it commented **}
+ {** if you would like to use the new paged display that was introduced in lifetype 1.1 **} 
+ {foreach from=$resources item=resource}
+	<div class="album">
+   		{if $resource->hasPreview()}
+   		{*<a target="_blank" href="resserver.php?blogId={$blog->getId()}&amp;resource={$resource->getFileName()}">*}
+   	<a href="{$url->resourceLink($resource)}">
+    	<img alt="{$resource->getDescription()}" src="{$url->resourcePreviewLink($resource)}" /></a>
+    	<p>{$resource->getFileName()}</p>
+   		{else}
+   	<a href="{$url->resourceLink($resource)}">
+   		{if $resource->isSound()}
+    	<img alt="Sound" src="{$url->getTemplateFile("images/sound.gif")}" /></a>
+   		{elseif $resource->isVideo()}
+    	<img alt="Video" src="{$url->getTemplateFile("images/video.gif")}" /></a>
+   		{elseif $resource->isZip()}
+    	<img alt="Zip" src="{$url->getTemplateFile("images/compressed.gif")}" /></a>
+   		{else}
+   	<img alt="File" src="{$url->getTemplateFile("images/file.gif")}" /></a>
+   		{/if}  
+   	<p>{$resource->getFileName()}</p>
+   		{/if}
+   		{assign var=metadata value=$resource->getMetadataReader()}
+  	<p>{$metadata->getRoundedSize()}</p>
+   		{if $resource->isImage()}
+  	<p>{$metadata->getWidth()} x {$metadata->getHeight()}</p>
+   		{elseif $resource->isSound()}
+  	<p>{$metadata->getFormat()|upper} {$metadata->getSampleRate()} bps</p>
+   		{elseif $resource->isVideo()}
+  	<p>{$metadata->getFormat()|upper} {$metadata->getWidth()} x {$metadata->getHeight()}, {$metadata->getLengthString()}</p>
+   		{elseif $resource->isZip()}
+   	<p>{$metadata->getTotalFiles()} {$locale->tr("files")}</p>
+   		{/if}
+   		{assign var="counter" value="`$counter+1`"}
+   		{if $counter%3 == 0}
+   		{/if}
+  	</div>
+  		{/foreach}
+
+	<div class="clearer">&nbsp;</div>
+
+</div>
+
+<!-- end of album contents --> 
+		{include file="$blogtemplate/footer.template"} 
\ No newline at end of file

Added: templates/branches/lifetype-1.2/delicious_fruit/albums.template
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/albums.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/albums.template	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,27 @@
+{include file="$blogtemplate/header.template"} 
+
+<h2>{$locale->tr("albums")}</h2>
+
+ <!-- album contents go here -->
+ 
+<div id="album">
+	
+	<div class="clearer">&nbsp;</div>
+
+		{assign var="counter" value=0}
+  		{foreach from=$albums item=album}
+	<div class="album">
+	<a href="{$url->albumLink($album)}"><img src="{$url->getTemplateFile("images/folder.gif")}" alt="{$album->getName()}" /></a>
+  	<p>{$album->getName()} ({$album->getNumResources()})</p>
+  		{assign var="counter" value="`$counter+1`"}
+		{if $counter%3 == 0}
+		{/if}
+	</div>
+		{/foreach}
+
+	<div class="clearer">&nbsp;</div>
+
+</div>
+
+<!-- end of the albums -->
+{include file="$blogtemplate/footer.template"} 
\ No newline at end of file

Added: templates/branches/lifetype-1.2/delicious_fruit/archives.template
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/archives.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/archives.template	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,16 @@
+{assign var=title value=$locale->tr("archives")}
+{include file="$blogtemplate/header.template" pageTitle="$pageTitle | $title"} 
+<h2>{$locale->tr("archives")}</h2>
+
+<div id="Archives">
+	
+	<ul>
+		{foreach from=$archives item=month}
+    	<li><a href="{$month->getUrl()}">{$month->getName()}</a> [{$month->getNumArticles()}]</li>
+    		{/foreach}
+    		
+    		
+    	</ul>
+</div>
+   	
+   		{include file="$blogtemplate/footer.template"} 
\ No newline at end of file

Added: templates/branches/lifetype-1.2/delicious_fruit/backups/footer.template_1176363794
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/backups/footer.template_1176363794	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/backups/footer.template_1176363794	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,118 @@
+</div>
+
+<div id="left">
+
+<!--
+<div id="navcontainer">
+
+
+<ul id="navlist">
+<li id="active"><a href="#" id="current">Home</a></li>
+<li class="green"><a href="#">Health</a></li>
+<li><a href="#">Fruits</a></li>
+<li><a href="#">Community</a></li>
+<li><a href="#">About us </a></li>
+</ul>
+</div>
+-->
+<div id="navcontainer">    	
+   	{$locale->tr("search")}
+</div>
+<div id="navlist">
+	<form id="search_form" method="post" action="{$url->getIndexUrl()}">
+	<label for="searchTerms"><input type="text" id="searchTerms" name="searchTerms" value="" /></label>
+	<input type="submit" name="Search" value="{$locale->tr("search_s")}" class="button" />
+	<input type="hidden" name="op" value="Search" />
+	<input type="hidden" name="blogId" value="{$blog->getId()}" />   
+	</form>
+	</div> 
+
+<div id="navcontainer">
+	{$locale->tr("recently")}
+</div>
+
+<div id="navlist">
+   	<ul>
+	{foreach from=$recentposts item=post}
+       <li><a title="{$post->getTopic()}" href="{$url->postLink($post)}">{$post->getTopic()}</a></li>
+   		{/foreach}
+   	</ul>
+</div>
+<div id="navcontainer">
+	{$locale->tr("categories")}
+</div>
+<div id="navlist">
+	<ul>
+    	{foreach from=$articlecategories item=articleCategory}
+    	<li><a title="{$articleCategory->getName()}" href="{$url->categoryLink($articleCategory)}">{$articleCategory->getName()} 
+		<abbr title="{$articleCategory->getNumPublishedArticles()} {$locale->tr("posts")}">[{$articleCategory->getNumArticles()}]</abbr>
+		</a></li>
+   		{/foreach}
+	</ul>
+</div>
+
+<div id="navcontainer">
+{$locale->tr("archives")}
+</div>
+<div id="navlist">	
+	<ul>
+		{foreach from=$archives item=month}
+    	<li><a href="{$month->getUrl()}">{$month->getName()}</a> [{$month->getNumArticles()}]</li>
+    	{/foreach}
+   	</ul>
+</div>
+   	
+<div id="navcontainer">
+{$locale->tr("my_links")}
+</div> 
+<div id="navlist">
+{foreach from=$mylinkscategories item=linkcategory}
+<em>{$linkcategory->getName()}</em>
+   	<ul>
+  		{foreach from=$linkcategory->getLinks() item=link}
+  	<li><a href="{$link->getUrl()}" title="{$link->getDescription()}">{$link->getName()}</a>: {$link->getDescription()} {if $link->getRssFeed() != ""}
+      <a href="{$link->getRssFeed()}"><img src="{$url->getUrl("/imgs/rss_logo_small.gif")}" alt="RSS" /></a>
+    {/if}</li>
+    		{/foreach}
+  	</ul>
+  		{/foreach}
+</div>
+
+		
+
+
+<div id="navcontainer">
+{$locale->tr("menu")}
+</div>
+<div id="navlist">
+   	<ul>
+   	<li><a title="{$locale->tr("main")}" href="{$url->blogLink()}">{$locale->tr("main")}</a></li>
+   	<li><a title="{$locale->tr("archives")}" href="{$url->templatePage("archives")}">{$locale->tr("archives")}</a></li>
+   	<li><a title="{$locale->tr("albums")}" href="{$url->albumLink()}">{$locale->tr("albums")}</a></li>
+   	<li><a title="{$locale->tr("admin")}" href="{$url->getAdminUrl()}">{$locale->tr("admin")}</a></li>
+   	</ul>
+</div>
+
+<div id="navcontainer">
+{$locale->tr("syndicate")}
+</div>
+<div id="navlist">
+    	<ul>
+    	<li><a title="RSS 0.90" href="{$url->rssLink("rss090")}">RSS 0.90</a></li>
+    	<li><a title="RSS 1.0" href="{$url->rssLink("rss10")}">RSS 1.0</a></li>
+    	<li><a title="RSS 2.0" href="{$url->rssLink("rss20")}">RSS 2.0</a></li>
+    	<li><a title="Atom" href="{$url->rssLink("rss20")}">Atom</a></li>
+    	</ul>
+</div>
+
+<div class="clearer">&nbsp;</div>	
+	
+</div>
+<div id="footer">
+	Copyright at 2007. <a href="http://reic.twbbs.org" titl="Reic's place" target="_blank">Reic's Place</a>. All rights reserved.<br />
+	Powered by <a href="http://www.lifetype.net" target="_blank">Lifetype</a>. Designed by <a href="http://www.oswd.org/user/profile/id/10642" target="_blank" title="Delicious Fruit">Dieter</a>. Ported to Lifetype by <a href="http://reic.twbbs.org" titl="Reic's place" target="_blank">Reic Wang</a>.
+</div>
+
+</div>
+</body>
+</html>
\ No newline at end of file

Added: templates/branches/lifetype-1.2/delicious_fruit/backups/post.template_1176363973
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/backups/post.template_1176363973	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/backups/post.template_1176363973	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,35 @@
+{assign var="postDate" value=$post->getDateObject()}
+{assign var="postOwner" value=$post->getUserInfo()}
+<div class="date_box">
+<div class="date_box_month">{$locale->formatDate($postDate,"%B")}</div>
+<div class="date_box_day">{$locale->formatDate($postDate,"%d")}</div>
+
+</div>
+<h3>{$post->getTopic()}</h3>
+<p class="sign">{foreach name=categories from=$post->getCategories() item=postCategory}<a href="{$url->categoryLink($postCategory)}" title="{$locale->tr("category")}: {$postCategory->getName()}">{$postCategory->getName()}</a>{if !$smarty.foreach.categories.last}, {/if}{/foreach} | {$postOwner->getUsername()} | {$locale->formatDate($postDate,"%B %d, %Y,%H:%M")} </p>
+
+
+
+<div>
+{$post->getText()}
+</div>
+
+{if $OnMainPage}
+
+<p class="read_more">
+<a title="{$locale->tr("permalink_title")} -> {$post->getTopic()}" href="{$url->postPermalink($post)}">{$locale->tr("permalink")}</a> |
+{if $blogsettings->getValue("comments_enabled") && $post->getCommentsEnabled()==1 || $post->getNumComments() > 0 }<a href="{$url->postPermalink($post)}#comments" title="{$locale->tr("comments")|capitalize} -> {$post->getTopic()}">{if $post->getNumComments() == 0 }{$locale->tr("add_comment")}{else if}{$locale->tr("comments")|capitalize} ({$post->getNumComments()}){/if}</a> | {/if}
+{if $post->getNumTrackbacks() > 0}<a href="{$url->postTrackbackStatsLink($post)}" title="{$locale->tr("trackbacks")} -> {$post->getTopic()}">{$locale->tr("trackbacks")} ({$post->getNumTrackbacks()})</a>{else}{$locale->tr("trackbacks")} ({$post->getNumTrackbacks()}){/if}
+</p>
+
+{else}
+
+<p class="read_more">
+{assign var=nextpost value=$post->getNextArticle()}{if $nextpost == true}<a href="{$url->postPermalink($nextpost)}" title="{$locale->tr("next_post")}: {$nextpost->getTopic()}">{$locale->tr("next_post")}</a> | {/if}
+{assign var=prevpost value=$post->getPrevArticle()}{if $prevpost == true}
+<a href="{$url->postPermalink($prevpost)}" title="{$locale->tr("previous_post")}: {$prevpost->getTopic()}">{$locale->tr("previous_post")}</a> | {/if}
+{if $blogsettings->getValue("comments_enabled") && $post->getCommentsEnabled()==1 || $post->getNumComments() > 0 }{$locale->tr("comments")} ({$post->getNumComments()}) | {/if}
+{if $post->getNumTrackbacks() > 0}<a href="{$url->postTrackbackStatsLink($post)}" title="{$locale->tr("trackbacks")} -> {$post->getTopic()}">{$locale->tr("trackbacks")} ({$post->getNumTrackbacks()})</a>{else}{$locale->tr("trackbacks")} ({$post->getNumTrackbacks()}){/if}
+</p>
+
+{/if}
\ No newline at end of file

Added: templates/branches/lifetype-1.2/delicious_fruit/backups/post.template_1176429156
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/backups/post.template_1176429156	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/backups/post.template_1176429156	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,35 @@
+{assign var="postDate" value=$post->getDateObject()}
+{assign var="postOwner" value=$post->getUserInfo()}
+<div class="date_box">
+<div class="date_box_month">{$locale->formatDate($postDate,"%B")}</div>
+<div class="date_box_day">{$locale->formatDate($postDate,"%d")}</div>
+
+</div>
+<h3>{$post->getTopic()}</h3>
+<p class="sign">{foreach name=categories from=$post->getCategories() item=postCategory}<a href="{$url->categoryLink($postCategory)}" title="{$locale->tr("category")}: {$postCategory->getName()}">{$postCategory->getName()}</a>{if !$smarty.foreach.categories.last}, {/if}{/foreach} | {$postOwner->getUsername()} | {$locale->formatDate($postDate,"%B %d, %Y,%H:%M")} </p>
+
+
+
+<div class="blog">
+{$post->getText()}
+</div>
+
+{if $OnMainPage}
+
+<p class="read_more">
+<a title="{$locale->tr("permalink_title")} -> {$post->getTopic()}" href="{$url->postPermalink($post)}">{$locale->tr("permalink")}</a> |
+{if $blogsettings->getValue("comments_enabled") && $post->getCommentsEnabled()==1 || $post->getNumComments() > 0 }<a href="{$url->postPermalink($post)}#comments" title="{$locale->tr("comments")|capitalize} -> {$post->getTopic()}">{if $post->getNumComments() == 0 }{$locale->tr("add_comment")}{else if}{$locale->tr("comments")|capitalize} ({$post->getNumComments()}){/if}</a> | {/if}
+{if $post->getNumTrackbacks() > 0}<a href="{$url->postTrackbackStatsLink($post)}" title="{$locale->tr("trackbacks")} -> {$post->getTopic()}">{$locale->tr("trackbacks")} ({$post->getNumTrackbacks()})</a>{else}{$locale->tr("trackbacks")} ({$post->getNumTrackbacks()}){/if}
+</p>
+
+{else}
+
+<p class="read_more">
+{assign var=nextpost value=$post->getNextArticle()}{if $nextpost == true}<a href="{$url->postPermalink($nextpost)}" title="{$locale->tr("next_post")}: {$nextpost->getTopic()}">{$locale->tr("next_post")}</a> | {/if}
+{assign var=prevpost value=$post->getPrevArticle()}{if $prevpost == true}
+<a href="{$url->postPermalink($prevpost)}" title="{$locale->tr("previous_post")}: {$prevpost->getTopic()}">{$locale->tr("previous_post")}</a> | {/if}
+{if $blogsettings->getValue("comments_enabled") && $post->getCommentsEnabled()==1 || $post->getNumComments() > 0 }{$locale->tr("comments")} ({$post->getNumComments()}) | {/if}
+{if $post->getNumTrackbacks() > 0}<a href="{$url->postTrackbackStatsLink($post)}" title="{$locale->tr("trackbacks")} -> {$post->getTopic()}">{$locale->tr("trackbacks")} ({$post->getNumTrackbacks()})</a>{else}{$locale->tr("trackbacks")} ({$post->getNumTrackbacks()}){/if}
+</p>
+
+{/if}
\ No newline at end of file

Added: templates/branches/lifetype-1.2/delicious_fruit/commentarticle.template
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/commentarticle.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/commentarticle.template	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,5 @@
+		{include file="$blogtemplate/header.template"} 
+		
+		{include file="$blogtemplate/commentform.template"}
+		
+		{include file="$blogtemplate/footer.template"} 

Added: templates/branches/lifetype-1.2/delicious_fruit/error.template
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/error.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/error.template	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,5 @@
+		{include file="$blogtemplate/header.template"} 
+ 	<h2>{$locale->tr("error")}</h2>
+ 		<p>{$locale->tr($message)}</p>
+		<p><a href="javascript:history.go(-1)">{$locale->tr("back")}</a></p>
+		{include file="$blogtemplate/footer.template"} 

Added: templates/branches/lifetype-1.2/delicious_fruit/footer.template
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/footer.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/footer.template	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,121 @@
+{pager style="links"}
+</div>
+
+<div id="left">
+
+<!--
+<div id="navcontainer">
+
+
+<ul id="navlist">
+<li id="active"><a href="#" id="current">Home</a></li>
+<li class="green"><a href="#">Health</a></li>
+<li><a href="#">Fruits</a></li>
+<li><a href="#">Community</a></li>
+<li><a href="#">About us </a></li>
+</ul>
+</div>
+-->
+<div id="navcontainer">    	
+   	{$locale->tr("search")}
+</div>
+<div id="navlist">
+	<form id="search_form" method="post" action="{$url->getIndexUrl()}">
+	<label for="searchTerms"><input type="text" id="searchTerms" name="searchTerms" value="" /></label>
+	<input type="submit" name="Search" value="{$locale->tr("search_s")}" class="button" />
+	<input type="hidden" name="op" value="Search" />
+	<input type="hidden" name="blogId" value="{$blog->getId()}" />   
+	</form>
+	</div> 
+
+<div id="navcontainer">
+	{$locale->tr("recently")}
+</div>
+
+<div id="navlist">
+   	<ul>
+	{foreach from=$recentposts item=post}
+       <li><a title="{$post->getTopic()}" href="{$url->postLink($post)}">{$post->getTopic()}</a></li>
+   		{/foreach}
+   	</ul>
+</div>
+<div id="navcontainer">
+	{$locale->tr("categories")}
+</div>
+<div id="navlist">
+	<ul>
+    	{foreach from=$articlecategories item=articleCategory}
+    	<li><a title="{$articleCategory->getName()}" href="{$url->categoryLink($articleCategory)}">{$articleCategory->getName()} 
+		<abbr title="{$articleCategory->getNumPublishedArticles()} {$locale->tr("posts")}">[{$articleCategory->getNumArticles()}]</abbr>
+		</a></li>
+   		{/foreach}
+	</ul>
+</div>
+
+<div id="navcontainer">
+{$locale->tr("archives")}
+</div>
+<div id="navlist">	
+	<ul>
+		{foreach from=$archives item=month}
+    	<li><a href="{$month->getUrl()}">{$month->getName()}</a> [{$month->getNumArticles()}]</li>
+    	{/foreach}
+   	</ul>
+</div>
+   	
+<div id="navcontainer">
+{$locale->tr("my_links")}
+</div> 
+<div id="navlist">
+{foreach from=$mylinkscategories item=linkcategory}
+<em>{$linkcategory->getName()}</em>
+   	<ul>
+  		{foreach from=$linkcategory->getLinks() item=link}
+  	<li><a href="{$link->getUrl()}" title="{$link->getDescription()}">{$link->getName()}</a>: {$link->getDescription()} {if $link->getRssFeed() != ""}
+      <a href="{$link->getRssFeed()}"><img src="{$url->getUrl("/imgs/rss_logo_small.gif")}" alt="RSS" /></a>
+    {/if}</li>
+    		{/foreach}
+  	</ul>
+  		{/foreach}
+</div>
+
+		
+
+
+<div id="navcontainer">
+{$locale->tr("menu")}
+</div>
+<div id="navlist">
+   	<ul>
+   	<li><a title="{$locale->tr("main")}" href="{$url->blogLink()}">{$locale->tr("main")}</a></li>
+   	<li><a title="{$locale->tr("archives")}" href="{$url->templatePage("archives")}">{$locale->tr("archives")}</a></li>
+   	<li><a title="{$locale->tr("albums")}" href="{$url->albumLink()}">{$locale->tr("albums")}</a></li>
+   	<li><a title="{$locale->tr("admin")}" href="{$url->getAdminUrl()}">{$locale->tr("admin")}</a></li>
+   	</ul>
+</div>
+
+<div id="navcontainer">
+{$locale->tr("syndicate")}
+</div>
+<div id="navlist">
+    	<ul>
+    	<li><a title="RSS 0.90" href="{$url->rssLink("rss090")}">RSS 0.90</a></li>
+    	<li><a title="RSS 1.0" href="{$url->rssLink("rss10")}">RSS 1.0</a></li>
+    	<li><a title="RSS 2.0" href="{$url->rssLink("rss20")}">RSS 2.0</a></li>
+    	<li><a title="Atom" href="{$url->rssLink("rss20")}">Atom</a></li>
+    	</ul>
+</div>
+
+<div class="clearer">&nbsp;</div>	
+	
+</div>
+<div id="footer">
+	Copyright at 2007. <a href="http://reic.twbbs.org" titl="Reic's place" target="_blank">Reic's Place</a>. All rights reserved.
+	Powered by <a href="http://www.lifetype.net" target="_blank">Lifetype</a>.<br />
+Designed by <a href="http://www.oswd.org/user/profile/id/10642" target="_blank" title="Delicious Fruit">Dieter Schneider</a>, <a href="http://www.csstemplateheaven.com/" title="csstemplateheave">CssTemplateHeaven</a>. 
+Ported to Lifetype by <a href="http://reic.twbbs.org" titl="Reic's place" target="_blank">Reic Wang</a>.
+</div>
+
+</div>
+</body>
+</html>

Added: templates/branches/lifetype-1.2/delicious_fruit/header.template
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/header.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/header.template	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,36 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{$locale->getLanguageId()}" lang="{$locale->getLanguageId()}" dir="{$locale->getDirection()}">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset={$locale->getCharset()}" />
+<meta name="generator" content="{$version}" />
+<meta http-equiv="Content-Language" content="{$locale->getLanguageId()}" />
+<title>{$pageTitle|escape:"html"}</title>
+<link rel="stylesheet" type="text/css" href="{$url->getTemplateFile("style.css")}" />
+<link rel="alternate" type="application/xml" title="RSS 2.0" href="{$url->rssLink("rss20")}" />
+<link rel="alternate" type="application/xml" title="RSS 1.0" href="{$url->rssLink("rss10")}" />
+<link rel="alternate" type="application/xml" title="RSS 0.90" href="{$url->rssLink("rss090")}" />
+<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="{$url->rssLink("atom")}" />
+
+{if $badbehavior}
+{$badbehavior->showBB2JavaScript()}
+{/if}
+
+</head>
+
+<body>
+<!-- Cached content created: {"0"|date_format:"%D %H:%M:%S"} -->
+<div id="container">
+
+<div id="header">
+
+<div id="header_left">
+<h1><a href="{$url->blogLink()}">{$blog->getBlog()}</a></h1>
+<h2>{$blog->getAbout()}</h2>
+</div>
+
+<div id="header_right">
+<div class="welcome">{$calendar}</div>
+</div>
+
+</div>
+<div id="right">
\ No newline at end of file

Added: templates/branches/lifetype-1.2/delicious_fruit/images/Thumbs.db
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/delicious_fruit/images/Thumbs.db
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/delicious_fruit/images/arrow.png
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/delicious_fruit/images/arrow.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/delicious_fruit/images/compressed.gif
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/delicious_fruit/images/compressed.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/delicious_fruit/images/container_bg.jpg
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/delicious_fruit/images/container_bg.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/delicious_fruit/images/date.jpg
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/delicious_fruit/images/date.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/delicious_fruit/images/demo_img.jpg
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/delicious_fruit/images/demo_img.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/delicious_fruit/images/file.gif
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/delicious_fruit/images/file.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/delicious_fruit/images/folder.gif
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/delicious_fruit/images/folder.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/delicious_fruit/images/form_bg.png
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/delicious_fruit/images/form_bg.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/delicious_fruit/images/input_bg.png
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/delicious_fruit/images/input_bg.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/delicious_fruit/images/menu.png
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/delicious_fruit/images/menu.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/delicious_fruit/images/parentfolder.gif
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/delicious_fruit/images/parentfolder.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/delicious_fruit/images/sound.gif
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/delicious_fruit/images/sound.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/delicious_fruit/images/video.gif
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/delicious_fruit/images/video.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/delicious_fruit/index.html
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/index.html	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/index.html	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,113 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<title>Delicious Fruit | Dieter Schneider 2007 | www.csstemplateheaven.com</title>
+<link rel="stylesheet" type="text/css" href="style.css" />
+</head>
+
+<body>
+
+<div id="container">
+
+<div id="header">
+
+<div id="header_left">
+<h1>Delicious <span class="red">Fruit</span></h1>
+<h2>Tastes like heaven</h2>
+</div>
+
+<div id="header_right">
+
+<p class="welcome">Welcome, Guest. Please login or <a href="#">register</a>.</p>
+
+  <form id="form1" method="post" action="">
+    <p><label>Username
+    <input type="text" class="fields" name="textfield" />
+    </label>
+    <label>Password
+    <input type="text" class="fields" name="textfield2" />
+    <input type="submit" class="submit_button" name="Submit" value="login" />
+    </label></p>
+  </form>
+  </div>
+  
+</div>
+
+
+
+<div id="right">
+
+<div class="date_box">
+<div class="date_box_month">Jan</div>
+<div class="date_box_day">18</div>
+</div>
+<h3>Lorem Ipsum sample text  </h3>
+
+
+  <p><img src="images/demo_img.jpg" alt="Kiwi" width="159" height="140" class="float_right" />This template is created by Dieter Schneider a cold January night 2007.  It's valid Xhtml 1.0 Strict! If you want the PSD file for this template  you can purchase it at <a href="http://www.csstemplateheaven.com">CssTemplateHeaven.com</a>,  this will give you more flexibility. I kindly ask you to not remove the copyright  in the footer if you have the free version of this template.</p>
+  
+  <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur nibh. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vestibulum sapien enim, cursus in, aliquam sit amet, convallis eget, metus. Duis dui mi, varius at, lacinia eget, ullamcorper et, tortor. Pellentesque ac pede. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean orci mi, varius eget, mollis vel, rhoncus a, leo. Ut eros enim, vehicula quis, gravida ac, sodales sit amet, orci. Nulla eleifend tristique erat.</p>
+  
+  <p class="read_more"><a href="#"><img src="images/arrow.png" alt="read more" width="16" height="12" />Further reading</a> </p>
+  
+  
+  <div class="date_box">
+<div class="date_box_month">Jan</div>
+<div class="date_box_day">12</div>
+</div>
+
+
+<h3>A blockquote</h3>
+  
+  <blockquote><p class="quote">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur nibh. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vestibulum sapien enim, cursus in, aliquam sit amet, convallis eget, metus. Duis dui mi, varius at, lacinia eget, ullamcorper et, tortor. Pellentesque ac pede. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean orci mi, varius eget, mollis vel, rhoncus a, leo. Ut eros enim, vehicula quis, gravida ac, sodales sit amet, orci. Nulla eleifend tristique erat. Sed ac est. Fusce tincidunt luctus tortor. Quisque sed neque vitae elit cursus faucibus.</p></blockquote>
+  
+  <p>Duis mauris justo, tincidunt in, molestie sed, lacinia vel, dolor. Aenean ac tellus porttitor ligula hendrerit ornare. Vivamus gravida ornare augue. Proin porta, quam a vulputate blandit, massa lorem euismod eros, vel nonummy enim sapien eget nisi. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. In dapibus commodo dolor. Aliquam facilisis turpis ac tortor. Quisque quis velit eget lacus consectetuer volutpat. Cras nibh. Sed quis justo. In neque lacus, sagittis id, lobortis nec, congue id, diam. Phasellus ut pede. Praesent porta consectetuer dui. Praesent mattis neque. Nunc commodo facilisis ipsum. Etiam scelerisque. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec ut quam. Nullam mauris nulla, dictum vulputate, pharetra vel, tempor nec, sem. Pellentesque scelerisque. </p>
+  
+    <p class="read_more"><a href="#"><img src="images/arrow.png" alt="read more" width="16" height="12" />Further reading</a> </p>
+  
+</div>
+<div id="left">
+
+<h4><span class="menu_first_letter">Navigation</span></h4>
+
+<div id="navcontainer">
+<ul id="navlist">
+<li id="active"><a href="#" id="current">Home</a></li>
+<li class="green"><a href="#">Health</a></li>
+<li><a href="#">Fruits</a></li>
+<li><a href="#">Community</a></li>
+<li><a href="#">About us </a></li>
+</ul>
+</div>
+
+<h4>Contact us </h4>
+
+
+  <form id="form2" method="post" class="contact_us" action="">
+    <p><label>Name
+    <input type="text" class="fields_contact_us" name="textfield" />
+    </label>
+    <label>E-mail
+    <input type="text" class="fields_contact_us" name="textfield2" />
+	</label>
+	<label>
+    Your message:
+    <textarea name="textarea" cols="" rows=""></textarea>
+	</label>
+    <label>
+    <input type="submit" class="submit_button_contact" name="Submit3" value="Submit" />
+    </label></p>
+  </form>
+
+<h4>Suggested links </h4>
+
+
+
+<a href="http://www.csstemplateheaven.com">CssTemplateHeaven</a></div>
+<div id="footer">Created by: Dieter Schneider 2007 | <a href="http://www.csstemplateheaven.com">www.csstemplateheaven.com</a> </div>
+</div>
+
+
+</body>
+</html>

Added: templates/branches/lifetype-1.2/delicious_fruit/main.template
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/main.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/main.template	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,32 @@
+		{assign var="OnMainPage" value=1}
+		{include file="$blogtemplate/header.template"} 
+		
+{if $category}<h2>{$locale->tr("category")}: {$category->getName()}</h2>{/if} 
+  
+{foreach from=$posts item=post}
+{if $showAll | 1 && $category}
+  <!-- showing only the topic of the post, in case we have too many! -->
+{assign var="postDate" value=$post->getDateObject()}
+<div class="date_box">
+<div class="date_box_month">{$locale->formatDate($postDate,"%B")}</div>
+<div class="date_box_day">{$locale->formatDate($postDate,"%d")}</div>
+
+</div>
+<h3><a href="{$url->postPermalink($post)}">{$post->getTopic()}</a></h3>
+<p class="sign">
+{foreach name=categories from=$post->getCategories() item=postCategory}
+  <a href="{$url->categoryLink($postCategory)}">{$postCategory->getName()}</a>{if !$smarty.foreach.categories.last}, {/if}
+{/foreach} | {$locale->formatDate($postDate,"%Y")}
+</p>
+<p>
+{$post->getText()|strip_tags|truncate:300:"...":false}
+</p>
+
+
+{else}
+  <!-- show the whole post, as we would normally do -->
+   {include file="$blogtemplate/post.template"}
+{/if}
+{/foreach}
+		
+		{include file="$blogtemplate/footer.template"} 

Added: templates/branches/lifetype-1.2/delicious_fruit/post.template
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/post.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/post.template	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,35 @@
+{assign var="postDate" value=$post->getDateObject()}
+{assign var="postOwner" value=$post->getUserInfo()}
+<div class="date_box">
+<div class="date_box_month">{$locale->formatDate($postDate,"%B")}</div>
+<div class="date_box_day">{$locale->formatDate($postDate,"%d")}</div>
+
+</div>
+<h3>{$post->getTopic()}</h3>
+<p class="sign">{foreach name=categories from=$post->getCategories() item=postCategory}<a href="{$url->categoryLink($postCategory)}" title="{$locale->tr("category")}: {$postCategory->getName()}">{$postCategory->getName()}</a>{if !$smarty.foreach.categories.last}, {/if}{/foreach} | {$postOwner->getUsername()} | {$locale->formatDate($postDate,"%B %d, %Y,%H:%M")} </p>
+
+
+
+<div class="blog">
+{$post->getText()}
+</div>
+
+{if $OnMainPage}
+
+<p class="read_more">
+<a title="{$locale->tr("permalink_title")} -> {$post->getTopic()}" href="{$url->postPermalink($post)}">{$locale->tr("permalink")}</a> |
+{if $blogsettings->getValue("comments_enabled") && $post->getCommentsEnabled()==1 || $post->getNumComments() > 0 }<a href="{$url->postPermalink($post)}#comments" title="{$locale->tr("comments")|capitalize} -> {$post->getTopic()}">{if $post->getNumComments() == 0 }{$locale->tr("add_comment")}{else if}{$locale->tr("comments")} ({$post->getNumComments()}){/if}</a> | {/if}
+{if $post->getNumTrackbacks() > 0}<a href="{$url->postTrackbackStatsLink($post)}" title="{$locale->tr("trackbacks")} -> {$post->getTopic()}">{$locale->tr("trackbacks")} ({$post->getNumTrackbacks()})</a>{else}{$locale->tr("trackbacks")} ({$post->getNumTrackbacks()}){/if}
+</p>
+
+{else}
+
+<p class="read_more">
+{assign var=nextpost value=$post->getNextArticle()}{if $nextpost == true}<a href="{$url->postPermalink($nextpost)}" title="{$locale->tr("next_post")}: {$nextpost->getTopic()}">{$locale->tr("next_post")}</a> | {/if}
+{assign var=prevpost value=$post->getPrevArticle()}{if $prevpost == true}
+<a href="{$url->postPermalink($prevpost)}" title="{$locale->tr("previous_post")}: {$prevpost->getTopic()}">{$locale->tr("previous_post")}</a> | {/if}
+{if $blogsettings->getValue("comments_enabled") && $post->getCommentsEnabled()==1 || $post->getNumComments() > 0 }{$locale->tr("comments")} ({$post->getNumComments()}) | {/if}
+{if $post->getNumTrackbacks() > 0}<a href="{$url->postTrackbackStatsLink($post)}" title="{$locale->tr("trackbacks")} -> {$post->getTopic()}">{$locale->tr("trackbacks")} ({$post->getNumTrackbacks()})</a>{else}{$locale->tr("trackbacks")} ({$post->getNumTrackbacks()}){/if}
+</p>
+
+{/if}
\ No newline at end of file

Added: templates/branches/lifetype-1.2/delicious_fruit/postandcomments.template
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/postandcomments.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/postandcomments.template	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,40 @@
+		{assign var="postPageTitle" value=$post->getTopic()}
+		{assign var="postPageTitle" value=" | $postPageTitle"}
+		{include file="$blogtemplate/header.template"} 
+  
+
+   
+   		{assign var="poster" value=$post->getUserInfo()}
+   		<!-- {$url->postTrackbackLink($post)} -->
+   		
+   		{include file="$blogtemplate/post.template"}
+{if $blogsettings->getValue("comments_enabled") && $post->getCommentsEnabled()==1 || $comments }<h2 id="comments">{$locale->tr("comments")}</h2>
+{/if}
+ {pager style="links"}
+   		{foreach from=$comments item=comment}
+<div class="comment">
+<h3 class="commentheader">{if $comment->getTopic() != null} {$comment->getTopic()|strip_tags}{else}Re: <em>{$post->getTopic()|strip_tags}</em>{/if}</h3>
+
+<p class="commentposterinfo">
+		{assign var="postDate" value=$comment->getTimestamp()}
+		{if $comment->getUserUrl() != ""}<a href="{$comment->getUserUrl()}">{$comment->getUsername()}</a>
+		{else}
+			{$comment->getUsername()}
+		{/if} | {$locale->formatDate($postDate, "%d/%m/%Y")}
+</p>
+
+<div class="commenttext">
+{if $comment->IsPosterAuthenticated()}
+ {assign var=poster value=$comment->getUser()}
+ {if $poster->hasPicture()}
+   {assign var=posterimg value=$poster->getPicture()}
+   {assign var=commenter value=$comment->getUser()}
+   <img src="{$posterimg->getPreviewLink()}" alt="{$commenter->getUserName()}" />
+  {/if}
+{/if}
+{$comment->getText()}
+</div>
+</div>
+	{/foreach}			
+{include file="$misctemplatepath/commentform.template"}					
+{include file="$blogtemplate/footer.template"}

Added: templates/branches/lifetype-1.2/delicious_fruit/posttrackbacks.template
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/posttrackbacks.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/posttrackbacks.template	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,21 @@
+		{include file="$blogtemplate/header.template"} 
+		
+<h2>{$locale->tr("trackbacks")}</h2>
+		
+<h3>{$locale->tr("trackbacks_for_article")} "<a href="{$url->postLink($post)}">{$post->getTopic()}</a>":</h3>
+
+		{foreach from=$trackbacks item=trackback}
+<h4><a href="{$trackback->getUrl()}">{$trackback->getTitle()}</a></h4>
+
+<dl>
+<dt>{$locale->tr("trackback_excerpt")}:</dt>
+<dd>{$trackback->getExcerpt()}</dd>
+<dt>{$locale->tr("trackback_weblog")}:</dt>
+<dd>{$trackback->getBlogName()}</dd>
+   		{assign var="trackbackDate" value=$trackback->getDateObject()}
+<dt>{$locale->tr("date")}:</dt>
+<dd>{$locale->formatDate($trackbackDate, "%d/%m/%Y %H:%M")}</dd>
+</dl>
+  		{/foreach}
+
+{include file="$blogtemplate/footer.template"} 

Added: templates/branches/lifetype-1.2/delicious_fruit/readme
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/readme	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/readme	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,5 @@
+This template is created by Dieter Schneider a cold January night 2007. 
+Ported to LifeType by Reic Wang.
+It's valid Xhtml 1.0 Strict! If you want the PSD file for this template you can purchase it at CssTemplateHeaven.com, this will give you more flexibility.
+You are free to use and modify it for any non-commercia purpose, but you must include the provided link back to our website. 
+

Added: templates/branches/lifetype-1.2/delicious_fruit/resource.template
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/resource.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/resource.template	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,74 @@
+		{include file="$blogtemplate/header.template"} 
+
+<h2>{$locale->tr("albums")}</h2>
+
+		{assign var=metadata value=$resource->getMetadataReader()}
+		{assign var=updated value=$resource->getTimestamp()}
+<div id="album">
+	<h3>{$resource->getFileName()}</h3>
+
+	<div id="Resource-Desc">
+    	<a href="{$url->resourceDownloadLink($resource)}">{$locale->tr("download")}</a> 
+    	({$metadata->getRoundedSize()}) | {$locale->tr("created")} {$locale->formatDate($updated,"%d %b, %Y")}</div>
+ 
+ 	<div id="Resource">    
+  	<p>{$resource->getDescription()}</p>
+  		{if $resource->isImage()}
+   	<img src="{$url->resourceMediumSizePreviewLink($resource)}" alt="{$resource->getFileName()}, {$metadata->getRoundedSize()}" />
+  
+  		{else}
+     	<a href="{$url->resourceDownloadLink($resource)}">
+   		{* show some information about the file *}
+   
+   		{if $resource->isSound()}
+     	<img alt="Sound" src="{$url->getTemplateFile("images/sound.gif")}" /></a>
+     	<p>{$resource->getFileName()}</p>
+     	<p>{$locale->tr("format")}: {$metadata->getFormat()|upper}</p>
+     	<p>{$locale->tr("length")}: {$metadata->getLengthString()}</p>
+     	<p>{$locale->tr("sample_rate")}: {$metadata->getSampleRate()} Khz</p>
+   
+   		{elseif $resource->isVideo()}
+     	<img alt="Sound" src="{$url->getTemplateFile("images/video.gif")}" /></a>
+     	<p>{$resource->getFileName()}</p>
+     	<p>{$locale->tr("format")}: {$metadata->getFormat()|upper}</p>
+    	<p>{$locale->tr("size")}: {$metadata->getHeight()} x {$metadata->getWidth()}</p>
+    	<p>{$locale->tr("length")}: {$metadata->getLengthString()}</p>
+    	<p>{$locale->tr("video_codec")}: {$metadata->getVideoCodec()}</p>
+    	<p>{$locale->tr("audio_codec")}: {$metadata->getAudioCodec()}</p>
+   
+   		{elseif $resource->isZip()}
+     	<img alt="Zip" src="{$url->getTemplateFile("images/compressed.gif")}" /></a>
+     	<p>{$resource->getFileName()}</p> 
+    	<p>{$metadata->getTotalFiles()} {$locale->tr("files")}</p>
+    	<p>{$locale->tr("uncompressed_size")}: {$metadata->getRoundedUncompressedSize()}</p>
+   
+   		{else}
+     	<img alt="File" src="{$url->getTemplateFile("images/file.gif")}" /></a>
+     	<p>{$resource->getFileName()}</p>
+         
+   		{/if}   
+  		{/if}
+ 	</div>
+ 
+ 
+		{assign var=album value=$resource->getAlbum()} 
+	<p><a href="{$url->albumLink($album)}">{$locale->tr("parent")}</a></p>
+
+</div>
+
+</div>
+
+
+<div class="clearer">&nbsp;</div> 
+
+</div>
+
+<div id="Bottommenu"><a href="http://www.w3.org/WAI/">Accessible</a> and Valid <a href="http://validator.w3.org/check/referer">XHTML 1.0 Strict</a> and <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a></div>
+
+
+<!-- Please leave the credit intact. Thank you. -->
+<div id="Bottom">Powered by <a href="http://www.lifetype.net">LifeType</a> - Design by <a href="http://www.balearweb.com/">BalearWeb</a></div>
+
+</div>
+</body>
+</html>
\ No newline at end of file

Added: templates/branches/lifetype-1.2/delicious_fruit/screenshot.jpg
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/delicious_fruit/screenshot.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/delicious_fruit/searchresults.template
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/searchresults.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/searchresults.template	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,28 @@
+{include file="$blogtemplate/header.template"} 
+   <h2>{$locale->tr("search_results")}: {foreach from=$searchterms item=term}{$term} {/foreach}</h2>
+   <div id="SearchResults">
+    {foreach from=$searchresults item=result}
+    
+    
+      {assign var=article value=$result->getArticle()}
+	  {assign var="postDate" value=$article->getDateObject()}
+<div class="date_box">
+<div class="date_box_month">{$locale->formatDate($postDate,"%B")}</div>
+<div class="date_box_day">{$locale->formatDate($postDate,"%d")}</span></div>
+</div>
+      <h3><a href="{$url->postPermalink($article)}">{$article->getTopic()}</a></h3>
+	    <p class="sign">
+		{foreach name=categories from=$article->getCategories() 
+				 item=postCategory}
+          <a href="{$url->categoryLink($postCategory)}">
+			 {$postCategory->getName()}</a>{if 
+				!$smarty.foreach.categories.last}, {/if}
+        {/foreach} | {$locale->formatDate($postDate,"%Y")}
+      </p>
+      <div>
+      {$article->getText()|strip_tags|truncate:300:"...":false}
+      </div>
+
+    {/foreach}
+   </div> 
+{include file="$blogtemplate/footer.template"} 

Added: templates/branches/lifetype-1.2/delicious_fruit/style.css
===================================================================
--- templates/branches/lifetype-1.2/delicious_fruit/style.css	                        (rev 0)
+++ templates/branches/lifetype-1.2/delicious_fruit/style.css	2007-04-14 14:10:28 UTC (rev 5307)
@@ -0,0 +1,335 @@
+*{
+margin:0pt;
+padding:0pt;
+}
+.blog ul,.blog ol
+{
+margin: 13px 0px;
+padding-left:40px;
+}
+.blog{
+margin: 15px 0px;
+}
+body {
+font-family:Georgia,"Times New Roman",Times,serif;
+
+}
+
+#container {
+background-image:url(images/container_bg.jpg);
+background-repeat:no-repeat;
+border-top:1px solid white;
+font-size:10pt;
+height:465px;
+margin:4px;
+width:931px;
+margin:0 auto;
+}
+
+#header {
+height:205px;
+padding-left:365px;
+padding-top:20px;
+}
+#header_left {
+float:left;
+height:206px;
+width:326px;
+}
+#header_right {
+float:right;
+height:206px;
+width:200px;
+padding-right:10px;
+/*padding-right:20px;*/
+}
+#header_right a:link, #header_right a:visited
+{
+text-decoration:underline;
+}
+#header_right a:hover
+{
+background-color:#b0ca83;
+}
+td.calMonthToday
+{
+background-color:#d8d8da;
+}
+
+#left {
+float:left;
+padding-left:45px;
+padding-top:120px;
+width:225px;
+}
+#right {
+	padding-top: 70px;
+	padding-right: 50px;
+	float:right;
+	width:535px;
+line-height:150%;
+font-size:11pt;
+	}
+
+#footer {
+background-color:#F9F7EA;
+border-top:1px dotted #CCCCCC;
+clear:both;
+float:right;
+width:535px;
+padding:10px 50px 10px 0px;
+text-align:center;
+font-size:80%;
+}
+.date_box {
+background-color:#FFFFFF;
+background-image:url(images/date.jpg);
+float:left;
+height:51px;
+width:52px;
+}
+.date_box_month {
+color:#75A006;
+font-family:Arial,Helvetica,sans-serif;
+font-size:10px;
+padding-left:3px;
+padding-top:6px;
+text-align:center;
+line-height:100%;
+}
+.date_box_day {
+color:#654040;
+font-size:22px;
+font-style:italic;
+font-weight:bold;
+padding-left:3px;
+text-align:center;
+line-height:100%;
+}
+p {
+margin-bottom:15px;
+margin-top:15px;
+}
+p.sign
+{
+margin:0;
+text-align:right;
+font-style:italic;
+}
+p.quote:first-letter {
+color:#6F9800;
+font-size:2.5em;
+margin-top:20px;
+padding-right:2px;
+}
+h1 {
+color:#87A448;
+font-family:"Times New Roman",Times,serif;
+font-size:2.6em;
+font-style:italic;
+margin-left:40px;
+margin-top:85px;
+}
+
+h2 {
+color:#BF8A44;
+font-family:"Times New Roman",Times,serif;
+font-size:1.6em;
+margin-left:60px;
+}
+h3 {
+background-color:#FFFFFF;
+border-bottom:1px dotted #CCCCCC;
+color:#84A54A;
+font-family:"Times New Roman",Times,serif;
+font-size:1.6em;
+font-weight:bold;
+height:31px;
+padding-left:75px;
+padding-top:20px;
+}
+
+blockquote {
+background-color:#F4F7F0;
+background-image:url(images/blockquote.png);
+background-repeat:no-repeat;
+border:1px dotted #EBE2B7;
+line-height:150%;
+margin-bottom:15px;
+margin-top:15px;
+padding:30px 60px;
+}
+.read_more {
+background-color:#FFFFFF;
+padding:3px;
+text-align:right;
+}
+img {
+border:medium none;
+}
+.float_left {
+float:left;
+margin-right:10px;
+}
+.float_right {
+float:right;
+margin-left:10px;
+}
+a:link {
+color:#557C2B;
+text-decoration:none;
+}
+a:visited {
+color:#83A956;
+text-decoration:none;
+}
+a:hover {
+color:#821115;
+text-decoration:underline;
+}
+a:active {
+color:#577E2D;
+text-decoration:none;
+}
+#navcontainer {
+color:#990000;
+font-weight:bold;
+background-color:#DCE3ED;
+background-image:url(images/menu.png);
+background-repeat:repeat-x;
+border-bottom:1px solid #EEEEEE;
+display:block;
+height:27px;
+padding-left:38px;
+padding-top:17px;
+width:182px;
+}
+
+#navlist {
+background-color:#F5F9EB;
+border-bottom:1px solid #CEAC86;
+border-top:1px solid #CEAC86;
+color:#A6BB7A;
+/*font-size:1em;*/
+/*margin-top:20px;
+padding:5px;*/
+width:220px;
+}
+
+
+#navcontainer a ,#navlist a {
+border-left:8px solid #A6BB7A;
+padding-left:5px;
+}
+#navlist a:hover
+{
+background-color:#758356;
+color:white;
+text-decoration: none;
+border-color:#c8d7a8;
+
+}
+#navcontainer a:link, #navcontainer a:visited {
+color:#93B26E;
+text-decoration:none;
+}
+#navcontainer a:hover {
+background:transparent url(images/menu.png) repeat scroll 0pt -45px;
+color:#562930;
+}
+
+#navlist ul
+{
+list-style-type: none;
+}
+#navlist li
+{
+
+}
+.welcome {
+color:#6B383D;
+font-size:0.8em;
+margin:25px 30px 0px 35px;
+text-align:left;
+}
+form {
+/*margin:0 auto;
+*/
+padding: 15px 5px;
+}
+
+form#search_form{
+border-left:8px solid #A6BB7A;
+}
+input.fields {
+background:transparent url(images/input_bg.png) repeat scroll 0% 50%;
+border-color:#E3E4E9 white white rgb(227, 228, 233);
+border-style:solid;
+border-width:1px;
+display:block;
+margin-bottom:3px;
+margin-top:3px;
+width:140px;
+}
+label {
+color:#A5BB73;
+font-style:italic;
+}
+.submit_button {
+background-color:#EAF4D9;
+border-color:white #E3E4E9 rgb(227, 228, 233) white;
+border-style:solid;
+border-width:2px;
+float:right;
+margin-right:40px;
+margin-top:15px;
+padding:2px;
+}
+form#NewComment{
+background-color:#FBF9F4;
+background-image:url(images/form_bg.png);
+background-position:right bottom;
+background-repeat:no-repeat;
+margin-left:0px;
+margin-top:15px;
+padding:15px;
+border:1px solid gray;
+}
+fieldset
+{
+	border:0px;
+}
+#commentTopic,#userName,#userEmail,#authImage,#userUrl{
+background:transparent url(images/input_bg.png) repeat scroll 0% 50%;
+border-color:#E3E4E9 white white rgb(227, 228, 233);
+border-style:solid;
+margin: 3px 0px 3px 7px;
+}
+textarea {
+background:transparent url(images/input_bg.png) repeat scroll 0% 50%;
+border-color:#E3E4E9 white white rgb(227, 228, 233);
+border-style:solid;
+border-width:1px;
+margin: 5px 0px 3px 7px;
+vertical-align:text-top;
+}
+.submit_button_contact {
+background-color:#EAF4D9;
+margin-top:15px;
+padding:2px;
+}
+
+#comments 
+{
+padding:0px 0px 15px;
+margin:0;
+}
+h3.commentheader
+{
+line-height:100%;
+padding:2px 0px;
+border:0px;
+border-top:1px dotted #cccccc;
+font-size:12pt;
+font-weight: bold;
+}



More information about the pLog-svn mailing list