[pLog-svn] r1998 - in templates/trunk: . FastTrack FastTrack/img ShadedGrey ShadedGrey/img

jondaley at devel.plogworld.net jondaley at devel.plogworld.net
Fri May 13 02:35:09 GMT 2005


Author: jondaley
Date: 2005-05-13 02:35:08 +0000 (Fri, 13 May 2005)
New Revision: 1998

Added:
   templates/trunk/FastTrack/
   templates/trunk/FastTrack/album.template
   templates/trunk/FastTrack/albums.template
   templates/trunk/FastTrack/commentarticle.template
   templates/trunk/FastTrack/commentform.template
   templates/trunk/FastTrack/error.template
   templates/trunk/FastTrack/footer.template
   templates/trunk/FastTrack/header.template
   templates/trunk/FastTrack/img/
   templates/trunk/FastTrack/img/about.png
   templates/trunk/FastTrack/img/archives.png
   templates/trunk/FastTrack/img/blockquote.png
   templates/trunk/FastTrack/img/bullet.png
   templates/trunk/FastTrack/img/contact.png
   templates/trunk/FastTrack/img/contentbg.jpg
   templates/trunk/FastTrack/img/golden_content_bg.jpg
   templates/trunk/FastTrack/img/greentopa.jpg
   templates/trunk/FastTrack/img/home.png
   templates/trunk/FastTrack/img/ico-talk-act.gif
   templates/trunk/FastTrack/img/ico-talk.gif
   templates/trunk/FastTrack/img/links.png
   templates/trunk/FastTrack/main.template
   templates/trunk/FastTrack/panel.template
   templates/trunk/FastTrack/post.template
   templates/trunk/FastTrack/postandcomments.template
   templates/trunk/FastTrack/posttrackbacks.template
   templates/trunk/FastTrack/resource.template
   templates/trunk/FastTrack/screenshot.jpg
   templates/trunk/FastTrack/searchresults.template
   templates/trunk/FastTrack/style.css
   templates/trunk/ShadedGrey/
   templates/trunk/ShadedGrey/album.template
   templates/trunk/ShadedGrey/albums.template
   templates/trunk/ShadedGrey/commentarticle.template
   templates/trunk/ShadedGrey/commentform.template
   templates/trunk/ShadedGrey/error.template
   templates/trunk/ShadedGrey/footer.template
   templates/trunk/ShadedGrey/header.template
   templates/trunk/ShadedGrey/img/
   templates/trunk/ShadedGrey/img/blockquote.png
   templates/trunk/ShadedGrey/img/bodybag.gif
   templates/trunk/ShadedGrey/img/bullet.png
   templates/trunk/ShadedGrey/img/dateheader.png
   templates/trunk/ShadedGrey/img/header.jpg
   templates/trunk/ShadedGrey/img/sidetitle.png
   templates/trunk/ShadedGrey/main.template
   templates/trunk/ShadedGrey/panel.template
   templates/trunk/ShadedGrey/post.template
   templates/trunk/ShadedGrey/postandcomments.template
   templates/trunk/ShadedGrey/posttrackbacks.template
   templates/trunk/ShadedGrey/resource.template
   templates/trunk/ShadedGrey/screenshot.jpg
   templates/trunk/ShadedGrey/searchresults.template
   templates/trunk/ShadedGrey/style.css
Log:
new templates by James

Added: templates/trunk/FastTrack/album.template
===================================================================
--- templates/trunk/FastTrack/album.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/FastTrack/album.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,87 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2>{$album->getName()}</h2>
+<p>
+{$album->getDescription()}
+</p>
+<!-- album contents go here -->
+<div id="album">
+<table style="border:0px;width:93%" summary="Album Resources">
+<tr>
+<td style="width:30%;" align="center" >
+<a class="nodecoration" href="{$url->parentAlbumLink($album)}">
+<img style="border:0px" src="{$url->getUrl("/imgs/folder.gif")}" alt="Folder" /><br/>
+..
+</a>
+</td>
+{assign var="counter" value=1}
+{assign var=children value=$album->getChildren()}
+{foreach from=$children item=childalbum}
+<td style="width:30%;" align="center" >
+<a class="nodecoration" href="{$url->albumLink($childalbum)}">
+<img style="border:0px;" src="{$url->getUrl("/imgs/folder.gif")}" alt="Folder" /><br/>
+{$childalbum->getName()} ({$childalbum->getNumResources()})
+</a>
+<br/><br/>
+{assign var="counter" value="`$counter+1`"}
+</td>
+{if $counter%3 == 0}
+</tr>
+<tr>
+{/if}
+{/foreach}
+<!--- show the resources here -->
+
+{assign var=resources value=$album->getResources()}
+{foreach from=$resources item=resource}
+<td style="width:30%;" align="center" >
+{if $resource->hasPreview()}
+{*<a class="nodecoration" target="_blank" href="resserver.php?blogId={$blog->getId()}&amp;resource={$resource->getFileName()}">*}
+<a class="nodecoration" href="{$url->resourceLink($resource)}">
+<img alt="{$resource->getDescription()}" style="border:0px;" src="{$url->resourcePreviewLink($resource)}" />
+<br/>{$resource->getFileName()}
+</a>
+{else}
+<a class="nodecoration" href="{$url->resourceLink($resource)}">
+{if $resource->isSound()}
+<img alt="Sound" src="{$url->getUrl("/imgs/sound.gif")}" height="64" width="64" style="border:0px;" />
+{elseif $resource->isVideo()}
+<img alt="Video" src="{$url->getUrl("/imgs/video.gif")}" height="64" width="64" style="border:0px;" />
+{elseif $resource->isZip()}
+<img alt="Zip" src="{$url->getUrl("/imgs/compressed.gif")}" height="64" width="64" style="border:0px;" />
+{else}
+<img alt="File" src="{$url->getUrl("/imgs/file.gif")}" height="64" width="64" style="border:0px;" />
+{/if}
+<br/>{$resource->getFileName()}
+</a>
+{/if}
+<br/>
+{assign var=metadata value=$resource->getMetadataReader()}
+{$metadata->getRoundedSize()}<br/>
+{if $resource->isImage()}
+{$metadata->getWidth()} x {$metadata->getHeight()}<br/>
+{elseif $resource->isSound()}
+{$metadata->getFormat()|upper} {$metadata->getSampleRate()} bps<br/>
+{elseif $resource->isVideo()}
+{$metadata->getFormat()|upper}
+{$metadata->getWidth()} x {$metadata->getHeight()},
+{$metadata->getLengthString()}<br/>
+{elseif $resource->isZip()}
+{$metadata->getTotalFiles()} {$locale->tr("files")}<br/>
+{/if}
+{assign var="counter" value="`$counter+1`"}
+</td>
+{if $counter%3 == 0}
+</tr>
+<tr>
+{/if}
+{/foreach}
+<td></td></tr>
+</table>
+</div>
+<!-- end of album contents -->
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/FastTrack/albums.template
===================================================================
--- templates/trunk/FastTrack/albums.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/FastTrack/albums.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,30 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2>{$locale->tr("albums")}</h2>
+<!-- album contents go here -->
+<div id="album">
+<table style="border:0px;width:93%;" summary="Albums">
+<tr>
+{assign var="counter" value=0}
+{foreach from=$albums item=album}
+<td style="width:30%;" align="center">
+<a class="nodecoration" href="{$url->albumLink($album)}">
+<img style="border:0px;" src="{$url->getUrl("/imgs/folder.gif")}" alt="Folder" /><br/>
+{$album->getName()} ({$album->getNumResources()})
+</a>
+{assign var="counter" value="`$counter+1`"}
+</td>
+{if $counter%3 == 0}
+</tr>
+<tr>
+{/if}
+{/foreach}
+<td></td></tr>
+</table>
+</div>
+<!-- end of the albums -->
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/FastTrack/commentarticle.template
===================================================================

Added: templates/trunk/FastTrack/commentform.template
===================================================================
--- templates/trunk/FastTrack/commentform.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/FastTrack/commentform.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,13 @@
+<form id="commentform" name="commentform" action="{$url->getBaseUrl()}/index.php" method="post">
+<p><input name="userName" type="text" size="35" /><small>{$locale->tr("comment_username")} (required)</small></p>
+<p><input name="commentTopic" type="text" size="35" /><small>{$locale->tr("comment_topic")}</small></p>
+<p><input name="userUrl" type="text" size="35" /><small>{$locale->tr("comment_url")}</small></p>
+<p><input name="userEmail" type="text" size="35" /><small>{$locale->tr("comment_email")}</small></p>
+<p><textarea rows="10" cols="45" name="commentText"></textarea></p>
+<p><input style="font-weight: bold;" type="submit" name="post" value="&nbsp;{$locale->tr("comment_send")}&nbsp;" />
+&nbsp;&nbsp;<input style="font-weight: bold;" type="reset"></p>
+<input type="hidden" name="op" value="AddComment"/>
+<input type="hidden" name="articleId" value="{$post->getId()}"/>
+<input type="hidden" name="blogId" value="{$blog->getId()}"/>
+<input type="hidden" name="parentId" value="{$parentId}"/>
+</form>
\ No newline at end of file

Added: templates/trunk/FastTrack/error.template
===================================================================
--- templates/trunk/FastTrack/error.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/FastTrack/error.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,10 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+   <div class="post">
+      <p class="post-info">{$locale->tr("error")}</p>
+      <p>{$locale->tr($message)}</p>
+      <p><a href="javascript:history.go(-1)">{$locale->tr("back")}</a></p>
+   </div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/FastTrack/footer.template
===================================================================
--- templates/trunk/FastTrack/footer.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/FastTrack/footer.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,6 @@
+<p id="footer">
+Power by <a href="http://www.plogworld.net" target="_blank">pLog</a>. Design by <a href="http://wpthemes.info" title="WP Themes.Info">WPThemes.Info</a>&nbsp; Converted to use with pLog by James Huang. Valid <a href="http://validator.w3.org/check/referer">XHTML</a> and <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a></p>
+</div>
+</div>
+</body>
+</html>
\ No newline at end of file

Added: templates/trunk/FastTrack/header.template
===================================================================
--- templates/trunk/FastTrack/header.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/FastTrack/header.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,25 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.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>{$blog->getBlog()}{$postPageTitle}</title>
+	<link rel="stylesheet" title="Default" href="{$url->getTemplateFile("style.css")}" type="text/css" />
+	<link rel="alternate" type="text/xml" title="RSS 2.0" href="{$url->rssLink("rss20")}" />
+	<link rel="alternate" type="text/xml" title="RSS 1.0" href="{$url->rssLink("rss10")}" />
+	<link rel="alternate" type="text/xml" title="RSS 0.90" href="{$url->rssLink("rss090")}" />
+	<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="{$url->rssLink("atom")}" />
+</head>
+<body>
+	<div id="rap">
+		<ul id="topnav">
+			<li><a href="{$url->blogLink()}" id="navHome" title="Back to Main page" accesskey="h"> {$locale->tr("main")} </a> | </li>
+			<li><a href="{$url->getAdminUrl()}" accesskey="2">{$locale->tr("dashboard")} </a> | </li>
+			<li><a href="{$url->albumLink()}" id="navArchives">{$locale->tr("albums")} </a> | </li>
+		</ul> 
+		<div id="header">
+			<h1><a href="{$url->blogLink()}" accesskey="1"> {$blog->getBlog()}</a></h1>
+			<div class="description">{$blog->getAbout()}</div>
+		</div>
+		<hr />

Added: templates/trunk/FastTrack/img/about.png
===================================================================
(Binary files differ)


Property changes on: templates/trunk/FastTrack/img/about.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/FastTrack/img/archives.png
===================================================================
(Binary files differ)


Property changes on: templates/trunk/FastTrack/img/archives.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/FastTrack/img/blockquote.png
===================================================================
(Binary files differ)


Property changes on: templates/trunk/FastTrack/img/blockquote.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/FastTrack/img/bullet.png
===================================================================
(Binary files differ)


Property changes on: templates/trunk/FastTrack/img/bullet.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/FastTrack/img/contact.png
===================================================================
(Binary files differ)


Property changes on: templates/trunk/FastTrack/img/contact.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/FastTrack/img/contentbg.jpg
===================================================================
(Binary files differ)


Property changes on: templates/trunk/FastTrack/img/contentbg.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/FastTrack/img/golden_content_bg.jpg
===================================================================
(Binary files differ)


Property changes on: templates/trunk/FastTrack/img/golden_content_bg.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/FastTrack/img/greentopa.jpg
===================================================================
(Binary files differ)


Property changes on: templates/trunk/FastTrack/img/greentopa.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/FastTrack/img/home.png
===================================================================
(Binary files differ)


Property changes on: templates/trunk/FastTrack/img/home.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/FastTrack/img/ico-talk-act.gif
===================================================================
(Binary files differ)


Property changes on: templates/trunk/FastTrack/img/ico-talk-act.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/FastTrack/img/ico-talk.gif
===================================================================
(Binary files differ)


Property changes on: templates/trunk/FastTrack/img/ico-talk.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/FastTrack/img/links.png
===================================================================
(Binary files differ)


Property changes on: templates/trunk/FastTrack/img/links.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/FastTrack/main.template
===================================================================
--- templates/trunk/FastTrack/main.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/FastTrack/main.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,8 @@
+{include file="$blogtemplate/header.template"}
+	<div id="content">
+	{foreach from=$posts item=post}
+  		{include file="$blogtemplate/post.template"}
+	{/foreach}
+	</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/FastTrack/panel.template
===================================================================
--- templates/trunk/FastTrack/panel.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/FastTrack/panel.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,73 @@
+<div id="sidebar">
+<!--Calendar-->
+<h2> {$locale->tr("calendar")} </h2>
+<ul>
+<li>
+<div align="center">
+{$calendar}
+</div>
+</li>
+</ul>
+<!--Search-->
+<form name="search_form" method="post" action="{$url->getIndexUrl()}">
+<h2> {$locale->tr("search")} </h2>
+<ul>
+<li><div align="center">
+<input type="text" name="searchTerms" value="" size="14" /><br/>
+<input type="hidden" name="op" value="Search" />
+<input type="hidden" name="blogId" value="{$blog->getId()}" />
+<input type="submit" name="Search" value="{$locale->tr("search")|capitalize}" />
+</div></li>
+</ul>
+</form>
+
+<!--Recent Articles-->
+<h2> {$locale->tr("recently")} </h2>
+<ul>
+{foreach from=$recentposts item=recentpost}
+<li><a title="{$recentpost->getText()|truncate:150:"..."|strip_tags|escape}" href="{$url->postLink($recentpost)}">{$recentpost->getTopic()}</a></li>
+{/foreach}
+</ul>
+
+<!--archives-->
+<h2> {$locale->tr("archives")} </h2>
+<ul>
+{foreach from=$archives item=month}
+<li><a href="{$month->getUrl()}">{$month->getName()}</a></li>
+{/foreach}
+</ul>
+
+<!--categories-->
+<h2> {$locale->tr("categories")} </h2>
+<ul>
+{foreach from=$articlecategories item=articleCategory}
+<li><a href="{$url->categoryRssLink($articleCategory)}"><img src="{$url->getUrl("/imgs/rss_logo_small.gif")}" style="border:0px;" alt="RSS 0.90" align="middle" /></a>
+<a href="{$url->categoryLink($articleCategory)}">{$articleCategory->getName()}</a> [{$articleCategory->getNumArticles()}]</li>
+{/foreach}
+</ul>
+
+<!--Mylink-->
+<h2> {$locale->tr("my_links")} </h2>
+<ul>
+{foreach from=$mylinkscategories item=linkcategory}
+<li>{$linkcategory->getName()}
+<ul class='children'>
+{foreach from=$linkcategory->getLinks() item=link}
+<li><a href="{$link->getUrl()}" title="{$link->getDescription()}">{$link->getName()}</a></li>
+{/foreach}
+</ul>
+</li>
+{/foreach}
+</ul>
+
+<!--Syndicate-->
+<h2> {$locale->tr("syndicate")} </h2>
+<ul>
+<li>
+<a class="nodecoration" title="Link to the RSS 0.90 feed." href="{$url->rssLink("rss090")}"><img src="{$url->getUrl("/imgs/rss090_logo.gif")}" style="border:0px;" alt="RSS 0.90" /></a><br />
+<a class="nodecoration" title="Link to the RSS 1.0 feed." href="{$url->rssLink("rss10")}"><img src="{$url->getUrl("/imgs/rss10_logo.gif")}" style="border:0px;" alt="RSS 1.0" /></a><br />
+<a class="nodecoration" title="Link to the RSS 2.0 feed." href="{$url->rssLink("rss20")}"><img src="{$url->getUrl("/imgs/rss20_logo.gif")}" style="border:0px;" alt="RSS 2.0" /></a><br />
+<a class="nodecoration" title="Link to the Atom 0.3 feed." href="{$url->rssLink("atom")}"><img src="{$url->getUrl("/imgs/atom_logo.png")}" style="border:0px;" alt="Atom 0.3" /></a><br />
+</li>
+</ul>
+</div>
\ No newline at end of file

Added: templates/trunk/FastTrack/post.template
===================================================================
--- templates/trunk/FastTrack/post.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/FastTrack/post.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,16 @@
+<!-- {$url->postTrackbackLink($post)} -->
+{assign var="postDate" value=$post->getDateObject()}
+{assign var="postOwner" value=$post->getUserInfo()}
+		<!-- post start -->
+		<div class="post-title">
+			<em>
+				[{foreach name=categories from=$post->getCategories() item=postcategory}
+				<a href="{$url->categoryLink($postcategory)}">{$postcategory->getName()}</a>
+				{if !$smarty.foreach.categories.last}, {/if}
+				{/foreach}]
+			</em>
+			{$locale->formatDate($postDate,"%d %B, %Y %H:%M")}
+		</div>
+		<p class="post-info"><a href="{$url->postPermalink($post)}" rel="bookmark" title="Permanent Link: {$post->getTopic()}"> {$post->getTopic()} </a></p>
+		<div class="post-content">{$post->getText()}</div>
+		<div class="post-footer"><span class='link-comment'>[<a href="{$url->postPermalink($post)}"> ({$post->getTotalComments()}) {$locale->tr("comment on this")} </a>]</span>&nbsp;|&nbsp;[<a href="{$url->postTrackbackStatsLink($post)}"> ({$post->getNumTrackbacks()}) {$locale->tr("trackbacks")}  </a>]&nbsp;|&nbsp;[<a href="{$url->postPermalink($post)}">{$locale->tr("permalink")}</a>]</div>

Added: templates/trunk/FastTrack/postandcomments.template
===================================================================
--- templates/trunk/FastTrack/postandcomments.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/FastTrack/postandcomments.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,45 @@
+{include file="$blogtemplate/header.template"}
+{assign var="postDate" value=$post->getDateObject()}
+{assign var="postOwner" value=$post->getUserInfo()}
+{assign var=nextpost value=$post->getNextArticle()}
+{assign var=prevpost value=$post->getPrevArticle()}
+{assign var=postId value=$post->getId()}
+<div id="content">
+<div class="post">
+<p align="center">
+{if $prevpost == true}
+<a href="{$url->postPermalink($prevpost)}" title="{$locale->tr("previous_post")}: {$prevpost->getTopic()}">&laquo; {$locale->tr("previous_post")}</a> |
+{/if}
+{if $nextpost == true}
+<a href="{$url->postPermalink($nextpost)}" title="{$locale->tr("next_post")}: {$nextpost->getTopic()}">{$locale->tr("next_post")}&raquo;</a>
+{/if}
+</p>
+{include file="$blogtemplate/post.template"}
+
+{* show comments *}
+<h3 id="comments">{$post->getTotalComments()} Comments on "{$post->getTopic()}"</h3>
+<ol class="commentlist">
+{foreach name=comment from=$comments item=comment}
+<li class="alt" id="comment-{$comment->getId()}">
+{$locale->tr("posted_by")}
+{if $comment->getUserUrl() != ""}
+<cite><a href="{$comment->getUserUrl()}"}>{$comment->getUsername()}</a></cite>
+{else}
+<cite>{$comment->getUsername()}</cite>
+{/if}
+<a name="{$comment->getId()}"></a>
+{$comment->getTopic()} [<a href="{$url->postPermalink($post)}#NewComment"> {$locale->tr("reply")} </a>]<br />
+<small class="commentmetadata">{assign var=commentDate value=$comment->getDateObject()}	{$locale->formatDate($commentDate, "%d/%m/%Y, %H:%M")}</small>
+<p>{$comment->getText()}</p>
+</li>
+{/foreach}
+</ol>
+{if $blogsettings->getValue("comments_enabled") && $post->getCommentsEnabled()==1}
+<h3 id="respond"><a name="Newcomment"></a>{$locale->tr("add_comment")}</h3>
+{include file="$blogtemplate/commentform.template"}
+{/if}
+
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/FastTrack/posttrackbacks.template
===================================================================
--- templates/trunk/FastTrack/posttrackbacks.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/FastTrack/posttrackbacks.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,17 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2 class="post-title">{$locale->tr("trackbacks_for_article")} "<a href="{$url->postLink($post)}">{$post->getTopic()}</a>":</h2>
+<br/<br/>
+{foreach from=$trackbacks item=trackback}
+<b>{$locale->tr("trackbacks_for_article")}:</b><a href="{$trackback->getUrl()}">{$trackback->getTitle()}</a><br/>
+<b>{$locale->tr("trackback_excerpt")}:</b> {$trackback->getExcerpt()}<br/>
+<b>{$locale->tr("trackback_weblog")}:</b> {$trackback->getBlogName()}<br/>
+{assign var="trackbackDate" value=$trackback->getDateObject()}
+<b>{$locale->tr("date")}:</b> {$locale->formatDate($trackbackDate, "%d/%m/%Y %H:%M")}<br/>
+<div class="post-footer">&nbsp;</div>
+{/foreach}
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/FastTrack/resource.template
===================================================================
--- templates/trunk/FastTrack/resource.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/FastTrack/resource.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,58 @@
+{include file="$blogtemplate/header.template"}
+{assign var=metadata value=$resource->getMetadataReader()}
+{assign var=updated value=$resource->getTimestamp()}
+<div id="content">
+<div class="post">
+<h2>{$resource->getFileName()}</h2>
+<br/>
+<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 id="album">
+<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->getUrl("/imgs/sound.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a><br/>
+{$locale->tr("format")}: {$metadata->getFormat()|upper}<br/>
+{$locale->tr("length")}: {$metadata->getLengthString()}<br/>
+{$locale->tr("sample_rate")}: {$metadata->getSampleRate()} Khz
+{elseif $resource->isVideo()}
+<img alt="Sound" src="{$url->getUrl("/imgs/video.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a><br/>
+{$locale->tr("format")}: {$metadata->getFormat()|upper}<br/>
+{$locale->tr("size")}: {$metadata->getHeight()} x {$metadata->getWidth()}<br/>
+{$locale->tr("length")}: {$metadata->getLengthString()}<br/>
+{$locale->tr("video_codec")}: {$metadata->getVideoCodec()}<br/>
+{$locale->tr("audio_codec")}: {$metadata->getAudioCodec()}
+{elseif $resource->isZip()}
+<img alt="Sound" src="{$url->getUrl("/imgs/compressed.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a><br/>
+{$metadata->getTotalFiles()} {$locale->tr("files")}<br/>
+{$locale->tr("uncompressed_size")}: {$metadata->getRoundedUncompressedSize()}
+{else}
+<img alt="Sound" src="{$url->getUrl("/imgs/file.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a>
+{/if}
+{/if}
+<br/>
+</div>
+<p>
+{assign var=album value=$resource->getAlbum()}
+{if $prevresource}<a href="{$url->resourceLink($prevresource)}">&laquo;</a> | {/if}
+<a href="{$url->albumLink($album)}">{$locale->tr("back")}</a>
+{if $nextresource}| <a href="{$url->resourceLink($nextresource)}">&raquo;</a>{/if}
+</p>
+</div>
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/FastTrack/screenshot.jpg
===================================================================
(Binary files differ)


Property changes on: templates/trunk/FastTrack/screenshot.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/FastTrack/searchresults.template
===================================================================
--- templates/trunk/FastTrack/searchresults.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/FastTrack/searchresults.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,22 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2 class="post-title" style="text-align:left;">{$locale->tr("search_results")}: {foreach from=$searchterms item=term}{$term} {/foreach}</h2><br/>
+<div class="post-info">
+{foreach from=$searchresults item=result}
+{assign var=article value=$result->getArticle()}
+<h3 class="post-title"><a href="{$url->postPermalink($article)}">{$article->getTopic()}</a></h3>
+
+{$locale->tr("categories")}:
+{foreach name=categories from=$article->getCategories() item=articleCategory}
+<a href="{$url->categoryLink($articleCategory)}">{$articleCategory->getName()}</a>{if !$smarty.foreach.categories.last}, {/if}
+{/foreach}
+
+<div class="post-content">{$article->getText()|strip_tags|truncate:300:"...":false}</div>
+<div class="post-footer">&nbsp;</div>
+{/foreach}
+</div>
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/FastTrack/style.css
===================================================================
--- templates/trunk/FastTrack/style.css	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/FastTrack/style.css	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,369 @@
+/*
+Theme Name: FastTrack
+Theme URI: http://wpthemes.info
+Version: 1.0
+Description: A Theme from wpthemes.Info
+Author: Sadish Balasubramanian
+Author URI: http://www.simpleinside.com
+*/
+/*
+Header Image by tkekkonen
+http://sxc.hu/browse.phtml?f=view&id=101419
+
+Icons from http://www.stylegala.com/features/bulletmadness/
+*/
+body {
+margin:0;
+padding:0;
+font-family: Georgia, Times, Times New Roman, sans-serif;
+font-size: 12px;
+text-align:center;
+color:#29303B;
+line-height:1.3em;
+background: #886;
+}
+a {
+color: #526FC4;
+text-decoration:none;
+}
+a:visited {
+color: #526FC4;
+}
+a:hover {
+color: #526FC4;
+text-decoration:underline;
+}
+input, textarea
+{
+border:#526FC4 1px solid;
+}
+#rap
+{
+background:#fff url('img/contentbg.jpg') center;
+width:700px;
+margin:0 auto;
+padding:8px;
+text-align:left;
+font-family: Trebuchet MS, Georgia, Arial, serif;
+font-size: 0.9em;
+}
+#header {
+background: url('img/greentopa.jpg') no-repeat bottom;
+height: 175px;
+margin: 0 auto;
+width:700px;
+padding:0;
+}
+
+#content {
+width:470px;
+float:left;
+padding:5px 0 5px 10px;
+margin:10px 0 0 10px;
+overflow:hidden;
+}
+
+#sidebar {
+width:180px;
+float:right;
+padding:10px 8px;
+margin:0;
+font-size:1em;
+}
+a img {
+border: none;
+}
+acronym, abbr {
+border-bottom: 1px dotted #0c6bf0;
+}
+acronym, abbr, span.caps {
+cursor: help;
+letter-spacing: .07em;
+}
+code {
+font-size: 1em;
+font-style: italic;
+}
+blockquote{
+background: #EEE url(img/blockquote.png) no-repeat bottom left;
+/*border: 1px solid #E0E0E0;*/
+padding: 10px 10px 30px 10px;
+margin: 1em 1em 1em 3em;
+width:250px;
+}
+
+cite {
+font-size: 0.9em;
+font-style: normal;
+}
+h3 {
+margin: 0;
+padding: 0;
+font-size:1.3em;
+}
+p {
+margin: 0 0 1em;
+padding: 0;
+line-height: 1.5em;
+}
+h1, h2, h3, h4 {
+font-family: Georgia, "Lucida Sans Unicode", lucida, Verdana, sans-serif;
+font-weight: normal;
+letter-spacing: 1px;
+}
+#header h1
+{
+margin: 0;
+font-size: 1.6em;
+color: #0f0f0f;
+padding:130px 0 0 30px;
+text-align:left;
+}
+.description
+{
+margin:0;
+padding:10px 100px 0 10px;
+font-size:1.1em;
+color:#777;
+display:none;
+}
+#sidebar h2 {
+margin: 0;
+padding:0 5px;
+font-size: 1.1em;
+color: #333;
+text-transform:uppercase;
+border-bottom:#ccc 1px solid;
+}
+h4 {
+margin-top: 0;
+margin-bottom: 0;
+font-size: 1.1em;
+color: #999;
+}
+#sidebar ul {
+list-style-type: none;
+padding: 0 0 1em 5px;
+margin: 0;
+font-size: 1.1em;
+}
+#sidebar ul li {
+margin: 0.5em 0 0 0;
+padding: 0;
+}
+#sidebar li a:link, #sidebar li a:visited {
+color: #526FC4;
+text-decoration: none;
+border:none;
+}
+#sidebar li a:hover {
+color: #526FC4;
+text-decoration:underline;
+border:none;
+}
+#sidebar ul ul {
+list-style-type: none;
+padding: 0px;
+margin: 0;
+font-size: 1em;
+background:none;
+border:none;
+}
+#sidebar ul ul li
+{
+margin:0;
+padding:0;
+padding-left:10px;
+margin-left:10px;
+background:url(img/bullet.png) no-repeat left;
+}
+
+#header a:link, #header a:visited {
+color: #333;
+text-decoration: none;
+border-bottom: none;
+}
+#header a:hover, #header a:active {
+color: #996;
+text-decoration: none;
+border-bottom: none;
+}
+#content ul {
+margin-left: 0;
+padding-left: 15px;
+
+list-style-type: none;
+}
+#content ul li {
+background: url('img/bullet.png') no-repeat 0 7px;
+padding-left: 1.5em;
+}
+.post-footer, .copyright {
+margin-bottom: 3em;
+font-size: 0.9em;
+color: #666;
+}
+.post-content {
+padding: 1em 0 0;
+}
+.post-title {
+margin: 0 0 0.2em;
+text-align: right;
+padding: 0.5em 1em 0 0;
+color: #999;
+border-bottom:#ccc 1px solid;
+font-family: "Lucida Grande", "Lucida Sans Unicode", lucida, Verdana, sans-serif;
+font-size: 0.8em;
+}
+.post-title em {
+text-decoration: none;
+float: left;
+font-style: normal;
+padding:0;
+font-size: 12px;
+}
+.post-info
+{
+margin:0;
+padding:0;
+font-size:1.1em;
+font-family:Georgia, Arial, Verdana, Serif;
+}
+#content h2, #content h3 {
+color: #666;
+font-family:Georgia, Arial, Serif;
+font-size:1.1em;
+margin:0;
+}
+.post-info a {
+text-decoration: none;
+color: #526FC4;
+border: none;
+}
+hr {
+display: none;
+}
+#footer {
+margin:0 auto;
+padding: 7px 0;
+border-top: 1px solid #996;
+clear: both;
+font-size: 0.8em;
+color: #999;
+text-align:center;width:690px;
+}
+#footer a {
+border:none;
+color:#526FC4;
+}
+#commentlist {
+font-size:1em;
+font-weight:bold;
+color: #ccc;
+}
+#commentlist li {
+color: #666;
+font-weight: normal;
+font-size:0.85em;
+}
+#commentlist cite {
+font-size: 0.8em;
+color: #808080;
+margin: 0 0 1em;
+padding: 0 0 0.5em;
+}
+cite a {
+border-bottom: 1px dotted #DC9204;
+text-decoration: none;
+}
+cite a:visited, a:hover {
+border-bottom: none;
+}
+#commentform #author, #commentform #email, #commentform #url, #commentform textarea {
+background: #fafafa;
+border: 1px solid #9ac2a7;
+padding: 0.2em;
+}
+#commentform textarea {
+width: 80%;
+}
+#commentform p {
+margin: 0 0 1em;
+}
+#commentlist li ul {
+border-left: 1px solid #ddd;
+font-size: 110%;
+list-style-type: none;
+}
+#comments,#respond {
+text-transform: uppercase;
+margin: 3em 0 1em 0;
+color: #AA7D39;
+font: 0.9em verdana, helvetica, sans-serif;
+}
+#topnav
+{
+list-style:none;
+font-size:0.9em;
+margin:0 auto;
+padding:2px 0 2px 5px;
+text-align:right;
+text-transform:lowercase;
+}
+#topnav li
+{
+list-style:none;
+display:inline;
+padding:0 1em;
+margin:0;
+}
+
+#topnav li a:link, #topnav li a:visited, #topnav li a:hover, #topnav li a:active
+{
+text-decoration:none;
+color:#666;
+}
+#topnav li a:hover
+{
+border-bottom:#7A7636 3px solid;
+color:#7A7636;
+}
+#navHome
+{
+padding-left:15px;
+background:url('img/home.png') no-repeat left center;
+}
+#navAbout
+{
+padding-left:15px;
+background:url('img/about.png') no-repeat left center;
+}
+#navArchives
+{
+padding-left:15px;
+background:url('img/archives.png') no-repeat left center;
+}
+#navLinks
+{
+padding-left:15px;
+background:url('img/links.png') no-repeat left center;
+}
+#navContact
+{
+padding-left:15px;
+background:url('img/contact.png') no-repeat left center;
+}
+#home #navHome, #about #navAbout, #links #navLinks, #contact #navContact, #archives #navArchives
+{
+border-bottom:#7A7636 3px solid;
+color:#7A7636;
+}
+
+.calMonthToday{
+border:1px dotted #669933;
+background-color:#eeeeee;
+}
+
+img {
+border:0px;
+}
\ No newline at end of file

Added: templates/trunk/ShadedGrey/album.template
===================================================================
--- templates/trunk/ShadedGrey/album.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/ShadedGrey/album.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,87 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2>{$album->getName()}</h2>
+<p>
+{$album->getDescription()}
+</p>
+<!-- album contents go here -->
+<div id="album">
+<table style="border:0px;width:93%" summary="Album Resources">
+<tr>
+<td style="width:30%;" align="center" >
+<a class="nodecoration" href="{$url->parentAlbumLink($album)}">
+<img style="border:0px" src="{$url->getUrl("/imgs/folder.gif")}" alt="Folder" /><br/>
+..
+</a>
+</td>
+{assign var="counter" value=1}
+{assign var=children value=$album->getChildren()}
+{foreach from=$children item=childalbum}
+<td style="width:30%;" align="center" >
+<a class="nodecoration" href="{$url->albumLink($childalbum)}">
+<img style="border:0px;" src="{$url->getUrl("/imgs/folder.gif")}" alt="Folder" /><br/>
+{$childalbum->getName()} ({$childalbum->getNumResources()})
+</a>
+<br/><br/>
+{assign var="counter" value="`$counter+1`"}
+</td>
+{if $counter%3 == 0}
+</tr>
+<tr>
+{/if}
+{/foreach}
+<!--- show the resources here -->
+
+{assign var=resources value=$album->getResources()}
+{foreach from=$resources item=resource}
+<td style="width:30%;" align="center" >
+{if $resource->hasPreview()}
+{*<a class="nodecoration" target="_blank" href="resserver.php?blogId={$blog->getId()}&amp;resource={$resource->getFileName()}">*}
+<a class="nodecoration" href="{$url->resourceLink($resource)}">
+<img alt="{$resource->getDescription()}" style="border:0px;" src="{$url->resourcePreviewLink($resource)}" />
+<br/>{$resource->getFileName()}
+</a>
+{else}
+<a class="nodecoration" href="{$url->resourceLink($resource)}">
+{if $resource->isSound()}
+<img alt="Sound" src="{$url->getUrl("/imgs/sound.gif")}" height="64" width="64" style="border:0px;" />
+{elseif $resource->isVideo()}
+<img alt="Video" src="{$url->getUrl("/imgs/video.gif")}" height="64" width="64" style="border:0px;" />
+{elseif $resource->isZip()}
+<img alt="Zip" src="{$url->getUrl("/imgs/compressed.gif")}" height="64" width="64" style="border:0px;" />
+{else}
+<img alt="File" src="{$url->getUrl("/imgs/file.gif")}" height="64" width="64" style="border:0px;" />
+{/if}
+<br/>{$resource->getFileName()}
+</a>
+{/if}
+<br/>
+{assign var=metadata value=$resource->getMetadataReader()}
+{$metadata->getRoundedSize()}<br/>
+{if $resource->isImage()}
+{$metadata->getWidth()} x {$metadata->getHeight()}<br/>
+{elseif $resource->isSound()}
+{$metadata->getFormat()|upper} {$metadata->getSampleRate()} bps<br/>
+{elseif $resource->isVideo()}
+{$metadata->getFormat()|upper}
+{$metadata->getWidth()} x {$metadata->getHeight()},
+{$metadata->getLengthString()}<br/>
+{elseif $resource->isZip()}
+{$metadata->getTotalFiles()} {$locale->tr("files")}<br/>
+{/if}
+{assign var="counter" value="`$counter+1`"}
+</td>
+{if $counter%3 == 0}
+</tr>
+<tr>
+{/if}
+{/foreach}
+<td></td></tr>
+</table>
+</div>
+<!-- end of album contents -->
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/ShadedGrey/albums.template
===================================================================
--- templates/trunk/ShadedGrey/albums.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/ShadedGrey/albums.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,30 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2>{$locale->tr("albums")}</h2>
+<!-- album contents go here -->
+<div id="album">
+<table style="border:0px;width:93%;" summary="Albums">
+<tr>
+{assign var="counter" value=0}
+{foreach from=$albums item=album}
+<td style="width:30%;" align="center">
+<a class="nodecoration" href="{$url->albumLink($album)}">
+<img style="border:0px;" src="{$url->getUrl("/imgs/folder.gif")}" alt="Folder" /><br/>
+{$album->getName()} ({$album->getNumResources()})
+</a>
+{assign var="counter" value="`$counter+1`"}
+</td>
+{if $counter%3 == 0}
+</tr>
+<tr>
+{/if}
+{/foreach}
+<td></td></tr>
+</table>
+</div>
+<!-- end of the albums -->
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/ShadedGrey/commentarticle.template
===================================================================

Added: templates/trunk/ShadedGrey/commentform.template
===================================================================
--- templates/trunk/ShadedGrey/commentform.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/ShadedGrey/commentform.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,13 @@
+<form id="commentform" name="commentform" action="{$url->getBaseUrl()}/index.php" method="post">
+<p><input name="userName" type="text" size="35" /><small>{$locale->tr("comment_username")} (required)</small></p>
+<p><input name="commentTopic" type="text" size="35" /><small>{$locale->tr("comment_topic")}</small></p>
+<p><input name="userUrl" type="text" size="35" /><small>{$locale->tr("comment_url")}</small></p>
+<p><input name="userEmail" type="text" size="35" /><small>{$locale->tr("comment_email")}</small></p>
+<p><textarea rows="10" cols="45" name="commentText"></textarea></p>
+<p><input style="font-weight: bold;" type="submit" name="post" value="&nbsp;{$locale->tr("comment_send")}&nbsp;" />
+&nbsp;&nbsp;<input style="font-weight: bold;" type="reset"></p>
+<input type="hidden" name="op" value="AddComment"/>
+<input type="hidden" name="articleId" value="{$post->getId()}"/>
+<input type="hidden" name="blogId" value="{$blog->getId()}"/>
+<input type="hidden" name="parentId" value="{$parentId}"/>
+</form>
\ No newline at end of file

Added: templates/trunk/ShadedGrey/error.template
===================================================================
--- templates/trunk/ShadedGrey/error.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/ShadedGrey/error.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,10 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+   <div class="post">
+      <p class="post-info">{$locale->tr("error")}</p>
+      <p>{$locale->tr($message)}</p>
+      <p><a href="javascript:history.go(-1)">{$locale->tr("back")}</a></p>
+   </div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/ShadedGrey/footer.template
===================================================================
--- templates/trunk/ShadedGrey/footer.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/ShadedGrey/footer.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,6 @@
+<p id="footer">
+Power by <a href="http://www.plogworld.net" target="_blank">pLog</a>. Design by <a href="http://wpthemes.info" title="WP Themes.Info">WPThemes.Info</a>&nbsp; Converted to use with pLog by James Huang. Valid <a href="http://validator.w3.org/check/referer">XHTML</a> and <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a></p>
+</div>
+</div>
+</body>
+</html>
\ No newline at end of file

Added: templates/trunk/ShadedGrey/header.template
===================================================================
--- templates/trunk/ShadedGrey/header.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/ShadedGrey/header.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,25 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.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>{$blog->getBlog()}{$postPageTitle}</title>
+<link rel="stylesheet" title="Default" href="{$url->getTemplateFile("style.css")}" type="text/css" />
+<link rel="alternate" type="text/xml" title="RSS 2.0" href="{$url->rssLink("rss20")}" />
+<link rel="alternate" type="text/xml" title="RSS 1.0" href="{$url->rssLink("rss10")}" />
+<link rel="alternate" type="text/xml" title="RSS 0.90" href="{$url->rssLink("rss090")}" />
+<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="{$url->rssLink("atom")}" />
+</head>
+<body>
+<div id="rap">
+<div id="header">
+<h1><a href="{$url->blogLink()}" accesskey="1"> {$blog->getBlog()}</a></h1>
+<div class="description">{$blog->getAbout()}</div>
+</div>
+	<ul id="topnav">
+		<li><a href="{$url->blogLink()}"> {$locale->tr("main")} </a> | </li>
+		<li><a href="{$url->getAdminUrl()}" accesskey="2">{$locale->tr("dashboard")} </a> | </li>
+		<li><a href="{$url->albumLink()}">{$locale->tr("albums")} </a> | </li>
+	</ul>
+<hr />
\ No newline at end of file

Added: templates/trunk/ShadedGrey/img/blockquote.png
===================================================================
(Binary files differ)


Property changes on: templates/trunk/ShadedGrey/img/blockquote.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/ShadedGrey/img/bodybag.gif
===================================================================
(Binary files differ)


Property changes on: templates/trunk/ShadedGrey/img/bodybag.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/ShadedGrey/img/bullet.png
===================================================================
(Binary files differ)


Property changes on: templates/trunk/ShadedGrey/img/bullet.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/ShadedGrey/img/dateheader.png
===================================================================
(Binary files differ)


Property changes on: templates/trunk/ShadedGrey/img/dateheader.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/ShadedGrey/img/header.jpg
===================================================================
(Binary files differ)


Property changes on: templates/trunk/ShadedGrey/img/header.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/ShadedGrey/img/sidetitle.png
===================================================================
(Binary files differ)


Property changes on: templates/trunk/ShadedGrey/img/sidetitle.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/ShadedGrey/main.template
===================================================================
--- templates/trunk/ShadedGrey/main.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/ShadedGrey/main.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,8 @@
+{include file="$blogtemplate/header.template"}
+	<div id="content">
+	{foreach from=$posts item=post}
+  		{include file="$blogtemplate/post.template"}
+	{/foreach}
+	</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/ShadedGrey/panel.template
===================================================================
--- templates/trunk/ShadedGrey/panel.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/ShadedGrey/panel.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,73 @@
+<div id="sidebar">
+<!--Calendar-->
+<h2> {$locale->tr("calendar")} </h2>
+<ul>
+	<li>
+		<div align="center">
+		{$calendar}
+		</div>
+	</li>
+</ul>
+<!--Search-->
+<form name="search_form" method="post" action="{$url->getIndexUrl()}">
+<h2> {$locale->tr("search")} </h2>
+<ul>
+	<li><div align="center">
+		<input type="text" name="searchTerms" value="" size="14" /><br/>
+		<input type="hidden" name="op" value="Search" />
+		<input type="hidden" name="blogId" value="{$blog->getId()}" />
+		<input type="submit" name="Search" value="{$locale->tr("search")|capitalize}" />
+	</div></li>
+</ul>
+</form>
+
+<!--Recent Articles-->
+<h2> {$locale->tr("recently")} </h2>
+<ul>
+{foreach from=$recentposts item=recentpost}
+<li><a title="{$recentpost->getText()|truncate:150:"..."|strip_tags|escape}" href="{$url->postLink($recentpost)}">{$recentpost->getTopic()}</a></li>
+{/foreach}
+</ul>
+
+<!--archives-->
+<h2> {$locale->tr("archives")} </h2>
+<ul>
+{foreach from=$archives item=month}
+<li><a href="{$month->getUrl()}">{$month->getName()}</a></li>
+{/foreach}
+</ul>
+
+<!--categories-->
+<h2> {$locale->tr("categories")} </h2>
+<ul>
+{foreach from=$articlecategories item=articleCategory}
+<li><a href="{$url->categoryRssLink($articleCategory)}"><img src="{$url->getUrl("/imgs/rss_logo_small.gif")}" style="border:0px;" alt="RSS 0.90" align="middle" /></a>
+<a href="{$url->categoryLink($articleCategory)}">{$articleCategory->getName()}</a> [{$articleCategory->getNumArticles()}]</li>
+{/foreach}
+</ul>
+
+<!--Mylink-->
+<h2> {$locale->tr("my_links")} </h2>
+<ul>
+{foreach from=$mylinkscategories item=linkcategory}
+<li>{$linkcategory->getName()}
+<ul class='children'>
+{foreach from=$linkcategory->getLinks() item=link}
+<li><a href="{$link->getUrl()}" title="{$link->getDescription()}">{$link->getName()}</a></li>
+{/foreach}
+</ul>
+</li>
+{/foreach}
+</ul>
+
+<!--Syndicate-->
+<h2> {$locale->tr("syndicate")} </h2>
+<ul>
+<li>
+<a class="nodecoration" title="Link to the RSS 0.90 feed." href="{$url->rssLink("rss090")}"><img src="{$url->getUrl("/imgs/rss090_logo.gif")}" style="border:0px;" alt="RSS 0.90" /></a><br />
+<a class="nodecoration" title="Link to the RSS 1.0 feed." href="{$url->rssLink("rss10")}"><img src="{$url->getUrl("/imgs/rss10_logo.gif")}" style="border:0px;" alt="RSS 1.0" /></a><br />
+<a class="nodecoration" title="Link to the RSS 2.0 feed." href="{$url->rssLink("rss20")}"><img src="{$url->getUrl("/imgs/rss20_logo.gif")}" style="border:0px;" alt="RSS 2.0" /></a><br />
+<a class="nodecoration" title="Link to the Atom 0.3 feed." href="{$url->rssLink("atom")}"><img src="{$url->getUrl("/imgs/atom_logo.png")}" style="border:0px;" alt="Atom 0.3" /></a><br />
+</li>
+</ul>
+</div>
\ No newline at end of file

Added: templates/trunk/ShadedGrey/post.template
===================================================================
--- templates/trunk/ShadedGrey/post.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/ShadedGrey/post.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,16 @@
+<!-- {$url->postTrackbackLink($post)} -->
+{assign var="postDate" value=$post->getDateObject()}
+{assign var="postOwner" value=$post->getUserInfo()}
+<!-- post start -->
+<div class="post-title">
+<em>
+[{foreach name=categories from=$post->getCategories() item=postcategory}
+<a href="{$url->categoryLink($postcategory)}">{$postcategory->getName()}</a>
+{if !$smarty.foreach.categories.last}, {/if}
+{/foreach}]
+</em>
+{$locale->formatDate($postDate,"%d %B, %Y %H:%M")}
+</div>
+<p class="post-info"><a href="{$url->postPermalink($post)}" rel="bookmark" title="Permanent Link: {$post->getTopic()}"> {$post->getTopic()} </a></p>
+<div class="post-content">{$post->getText()}</div>
+<div class="post-footer"><span class='link-comment'>[<a href="{$url->postPermalink($post)}"> ({$post->getTotalComments()}) {$locale->tr("comment on this")} </a>]</span>&nbsp;|&nbsp;[<a href="{$url->postTrackbackStatsLink($post)}"> ({$post->getNumTrackbacks()}) {$locale->tr("trackbacks")}  </a>]&nbsp;|&nbsp;[<a href="{$url->postPermalink($post)}">{$locale->tr("permalink")}</a>]</div>
\ No newline at end of file

Added: templates/trunk/ShadedGrey/postandcomments.template
===================================================================
--- templates/trunk/ShadedGrey/postandcomments.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/ShadedGrey/postandcomments.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,45 @@
+{include file="$blogtemplate/header.template"}
+{assign var="postDate" value=$post->getDateObject()}
+{assign var="postOwner" value=$post->getUserInfo()}
+{assign var=nextpost value=$post->getNextArticle()}
+{assign var=prevpost value=$post->getPrevArticle()}
+{assign var=postId value=$post->getId()}
+<div id="content">
+<div class="post">
+<p align="center">
+{if $prevpost == true}
+<a href="{$url->postPermalink($prevpost)}" title="{$locale->tr("previous_post")}: {$prevpost->getTopic()}">&laquo; {$locale->tr("previous_post")}</a> |
+{/if}
+{if $nextpost == true}
+<a href="{$url->postPermalink($nextpost)}" title="{$locale->tr("next_post")}: {$nextpost->getTopic()}">{$locale->tr("next_post")}&raquo;</a>
+{/if}
+</p>
+{include file="$blogtemplate/post.template"}
+
+{* show comments *}
+<h3 id="comments">{$post->getTotalComments()} Comments on "{$post->getTopic()}"</h3>
+<ol class="commentlist">
+{foreach name=comment from=$comments item=comment}
+<li class="alt" id="comment-{$comment->getId()}">
+{$locale->tr("posted_by")}
+{if $comment->getUserUrl() != ""}
+<cite><a href="{$comment->getUserUrl()}"}>{$comment->getUsername()}</a></cite>
+{else}
+<cite>{$comment->getUsername()}</cite>
+{/if}
+<a name="{$comment->getId()}"></a>
+{$comment->getTopic()} [<a href="{$url->postPermalink($post)}#NewComment"> {$locale->tr("reply")} </a>]<br />
+<small class="commentmetadata">{assign var=commentDate value=$comment->getDateObject()}	{$locale->formatDate($commentDate, "%d/%m/%Y, %H:%M")}</small>
+<p>{$comment->getText()}</p>
+</li>
+{/foreach}
+</ol>
+{if $blogsettings->getValue("comments_enabled") && $post->getCommentsEnabled()==1}
+<h3 id="respond"><a name="Newcomment"></a>{$locale->tr("add_comment")}</h3>
+{include file="$blogtemplate/commentform.template"}
+{/if}
+
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/ShadedGrey/posttrackbacks.template
===================================================================
--- templates/trunk/ShadedGrey/posttrackbacks.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/ShadedGrey/posttrackbacks.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,17 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2 class="post-title">{$locale->tr("trackbacks_for_article")} "<a href="{$url->postLink($post)}">{$post->getTopic()}</a>":</h2>
+<br/<br/>
+{foreach from=$trackbacks item=trackback}
+<b>{$locale->tr("trackbacks_for_article")}:</b><a href="{$trackback->getUrl()}">{$trackback->getTitle()}</a><br/>
+<b>{$locale->tr("trackback_excerpt")}:</b> {$trackback->getExcerpt()}<br/>
+<b>{$locale->tr("trackback_weblog")}:</b> {$trackback->getBlogName()}<br/>
+{assign var="trackbackDate" value=$trackback->getDateObject()}
+<b>{$locale->tr("date")}:</b> {$locale->formatDate($trackbackDate, "%d/%m/%Y %H:%M")}<br/>
+<div class="post-footer">&nbsp;</div>
+{/foreach}
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/ShadedGrey/resource.template
===================================================================
--- templates/trunk/ShadedGrey/resource.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/ShadedGrey/resource.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,58 @@
+{include file="$blogtemplate/header.template"}
+{assign var=metadata value=$resource->getMetadataReader()}
+{assign var=updated value=$resource->getTimestamp()}
+<div id="content">
+<div class="post">
+<h2>{$resource->getFileName()}</h2>
+<br/>
+<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 id="album">
+<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->getUrl("/imgs/sound.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a><br/>
+{$locale->tr("format")}: {$metadata->getFormat()|upper}<br/>
+{$locale->tr("length")}: {$metadata->getLengthString()}<br/>
+{$locale->tr("sample_rate")}: {$metadata->getSampleRate()} Khz
+{elseif $resource->isVideo()}
+<img alt="Sound" src="{$url->getUrl("/imgs/video.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a><br/>
+{$locale->tr("format")}: {$metadata->getFormat()|upper}<br/>
+{$locale->tr("size")}: {$metadata->getHeight()} x {$metadata->getWidth()}<br/>
+{$locale->tr("length")}: {$metadata->getLengthString()}<br/>
+{$locale->tr("video_codec")}: {$metadata->getVideoCodec()}<br/>
+{$locale->tr("audio_codec")}: {$metadata->getAudioCodec()}
+{elseif $resource->isZip()}
+<img alt="Sound" src="{$url->getUrl("/imgs/compressed.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a><br/>
+{$metadata->getTotalFiles()} {$locale->tr("files")}<br/>
+{$locale->tr("uncompressed_size")}: {$metadata->getRoundedUncompressedSize()}
+{else}
+<img alt="Sound" src="{$url->getUrl("/imgs/file.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a>
+{/if}
+{/if}
+<br/>
+</div>
+<p>
+{assign var=album value=$resource->getAlbum()}
+{if $prevresource}<a href="{$url->resourceLink($prevresource)}">&laquo;</a> | {/if}
+<a href="{$url->albumLink($album)}">{$locale->tr("back")}</a>
+{if $nextresource}| <a href="{$url->resourceLink($nextresource)}">&raquo;</a>{/if}
+</p>
+</div>
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/ShadedGrey/screenshot.jpg
===================================================================
(Binary files differ)


Property changes on: templates/trunk/ShadedGrey/screenshot.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/ShadedGrey/searchresults.template
===================================================================
--- templates/trunk/ShadedGrey/searchresults.template	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/ShadedGrey/searchresults.template	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,25 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2>{$locale->tr("search_results")}: {foreach from=$searchterms item=term}{$term} {/foreach}</h2><br/>
+<div class="post-info">
+{foreach from=$searchresults item=result}
+{assign var=article value=$result->getArticle()}
+<div class="post-title">
+
+<em><a href="{$url->postPermalink($article)}">{$article->getTopic()}</a></em>
+{$locale->tr("categories")}:
+{foreach name=categories from=$article->getCategories() item=articleCategory}
+<a href="{$url->categoryLink($articleCategory)}">{$articleCategory->getName()}</a>{if !$smarty.foreach.categories.last}, {/if}
+{/foreach}
+
+</div>
+
+<div class="post-content">{$article->getText()|strip_tags|truncate:300:"...":false}</div>
+<div class="post-footer">&nbsp;</div>
+{/foreach}
+</div>
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/ShadedGrey/style.css
===================================================================
--- templates/trunk/ShadedGrey/style.css	2005-05-12 09:09:23 UTC (rev 1997)
+++ templates/trunk/ShadedGrey/style.css	2005-05-13 02:35:08 UTC (rev 1998)
@@ -0,0 +1,347 @@
+/*
+Theme Name: ShadedGrey
+Theme URI: http://wpthemes.info/
+Design Name: Shaded Grey
+Description: Shaded Grey is the second theme from WPThemes.Info
+Version: 1.0
+Author: Sadish Balasubramanian
+Author URI: http://www.simpleinside.com
+*/
+body {
+margin: 0;
+padding: 0;
+text-align: center;
+color: #666;
+background: #e5e5e5;
+font: 90% 'Trebuchet MS', Verdana, Georgia, Arial, sans-serif;
+}
+a {
+text-decoration: none;
+color: #9C9969;
+}
+a:visited {
+color: #BDBB9B;
+}
+a:hover {
+border-color: #7A7636;
+color: #7A7636;
+}
+#rap {
+width: 760px;
+margin: 0px auto 20px auto;
+padding: 0;
+font-size: 1em;
+text-align: left;
+line-height: 18px;
+background: #fff url('img/bodybag.gif') repeat-y center;
+border:#ccc 1px solid;
+}
+#header {
+margin: 0;
+padding: 0 0 0 0;
+border-bottom: 1px solid #ebebeb;
+background: #fff url('img/header.jpg') no-repeat top;
+height:60px;
+}
+
+#topnav
+{
+list-style:none;
+font-size:12px;
+margin:0;
+padding:0 0 0 5px;
+text-align:center;
+text-transform:lowercase;
+border-bottom:#ddd 1px solid;
+background:transparent url('img/sidetitle.png') repeat-x top center;
+}
+#topnav li
+{
+list-style:none;
+display:inline;
+padding:0 1em 0 0;
+margin:0;
+}
+#topnav li a:link, #topnav li a:visited, #topnav li a:hover, #topnav li a:active
+{
+text-decoration:none;
+color:#666;
+}
+#topnav li a:hover
+{
+border-bottom:#7A7636 3px solid;
+color:#7A7636;
+}
+
+
+#content
+{
+float: left;
+margin:20px 0;
+padding:0 1em;
+background: #fff;
+width: 520px;
+font-size: 0.9em;
+display:inline;
+color:#333;
+overflow:hidden;
+}
+#sidebar {
+margin: 0;
+width: 180px;
+padding: 10px 10px 0 0px;
+float:right;
+display:inline;
+font-family : verdana, tahoma, arial, serif;
+}
+html>body #sidebar {
+width: 180px;
+}
+a img {
+border: none;
+}
+acronym, abbr {
+border-bottom: 1px dotted #0c6bf0;
+}
+acronym, abbr, span.caps {
+cursor: help;
+letter-spacing: .07em;
+}
+code {
+font-size: 1em;
+font-style: italic;
+}
+blockquote{
+background: #EEE url(img/blockquote.png) no-repeat bottom left;
+/*border: 1px solid #E0E0E0;*/
+padding: 10px;
+padding-bottom: 40px;
+margin: 1em;
+}
+
+cite {
+font-size: 0.9em;
+font-style: normal;
+}
+h3 {
+margin: 0;
+padding: 0;
+font: normal 1.3em verdana, helvetica, sans-serif;
+}
+p {
+margin: 0 0 1em;
+padding: 0;
+line-height: 1.5em;
+}
+h1, h2, h3, h4 {
+font-family: Georgia, "Lucida Grande", "Lucida Sans Unicode", lucida, Verdana, sans-serif;
+font-weight: normal;
+letter-spacing: 1px;
+}
+#header h1 {
+margin: 30px 0 0 10px;
+font-size: 1.4em;
+color: #333;
+word-spacing: 1px;
+}
+h2 {
+margin: 0;
+padding: 0;
+font-size: 1.1em;
+color: #333;
+font-weight: bold;
+}
+h3 {
+margin: 0;
+padding: 0;
+font-size: 1.2em;
+color: #333;
+font-weight: bold;
+}
+.description
+{
+margin:0 0 0 10px;
+padding:10px 0 0 0;
+font-size:0.9em;
+color:#f0f0f0;
+}
+#sidebar h2 {
+margin: 0;
+padding:5px;
+font-size: 1em;
+color: #333;
+font-weight: normal;
+background:transparent url('img/sidetitle.png') repeat-x top center;
+}
+h4 {
+margin-top: 0;
+margin-bottom: 0;
+font-size: 1.1em;
+color: #999;
+}
+#sidebar ul {
+list-style-type: none;
+padding: 0 0 1em 5px;
+margin: 0;
+}
+#sidebar ul li {
+margin: 0.5em 0 0 0;
+padding: 0;
+font-size: 0.76em;
+}
+#sidebar li a:link, #sidebar li a:visited {
+color: #999;
+border-bottom: 1px solid #ebebeb;
+text-decoration: none;
+}
+#sidebar li a:hover {
+color: #666;
+border-bottom: 1px solid #666;
+}
+
+#sidebar ul ul {
+list-style-type: none;
+padding: 0px;
+margin: 0;
+font-size: 12px;
+background:none;
+border:none;
+}
+#sidebar ul ul li
+{
+margin:0;
+padding:0;
+padding-left:10px;
+margin-left:10px;
+background:url(img/bullet.png) no-repeat left;
+}
+
+
+#header a:link, #header a:visited, #header a:hover, #header a:active {
+color: #f0f0f0;
+text-decoration: none;
+border-bottom: none;
+}
+#content ul {
+margin-left: 0;
+padding-left: 15px;
+list-style-type: none;
+}
+#content ul li {
+background: url('img/bullet.png') no-repeat 0 7px;
+padding-left: 1.5em;
+}
+.post-footer, .copyright {
+margin-bottom: 3em;
+font-size: 0.9em;
+color: #666;
+}
+.post-content {
+padding: 1em 0 0;
+}
+img {
+border: #ccc 1px solid;
+padding: 3px;
+}
+.post-title {
+margin: 0 0 0.2em;
+text-align: right;
+padding: 0.5em 1em 0 0;
+color: #999;
+background:transparent url('img/dateheader.png') no-repeat right top;
+}
+.post-title em {
+text-decoration: none;
+float: left;
+font-style: normal;
+font-size: 0.9em;
+padding:0;
+margin-top:-0.3em;
+}
+.post-info {
+color: #999;
+font-size:1.2em;
+margin:0;
+}
+.post-info a {
+text-decoration: none;
+color: #6E6A7E;
+border: none;
+}
+hr {
+display: none;
+}
+#footer {
+margin:0;
+padding: 7px 20px;
+border-top: 1px solid #e6e6e6;
+clear: both;
+font-size: 0.7em;
+color: #999;
+background: #fff;
+text-align:center;
+}
+#footer a {
+border:none;
+color:#7A7636;
+}
+#commentlist {
+font-size:1em;
+font-weight:bold;
+color: #ccc;
+}
+#commentlist li {
+color: #666;
+font-weight: normal;
+font-size:0.85em;
+}
+#commentlist cite {
+font-size: 0.8em;
+color: #808080;
+margin: 0 0 1em;
+padding: 0 0 0.5em;
+}
+cite a {
+border-bottom: 1px dotted #DC9204;
+text-decoration: none;
+}
+cite a:visited, a:hover {
+border-bottom: none;
+}
+#commentform #author, #commentform #email, #commentform #url, #commentform textarea {
+background: #F5F5F5;
+border: 1px solid #669BB4;
+padding: 0.2em;
+}
+#commentform textarea {
+width: 80%;
+}
+#commentform p {
+margin: 0 0 1em;
+}
+#commentlist li ul {
+border-left: 1px solid #ddd;
+font-size: 110%;
+list-style-type: none;
+}
+#comments {
+text-transform: uppercase;
+margin-top: 3em;
+color: #AA7D39;
+font: 0.9em verdana, helvetica, sans-serif;
+}
+#postcomment {
+text-transform: uppercase;
+margin-top: 0.9em;
+color: #AA7D39;
+font: 1em verdana, helvetica, sans-serif;
+}
+
+.calMonthToday{
+border:1px dotted #f0f0f0;
+background-color:#eeeeee;
+}
+
+img {
+border:0px;
+}
\ No newline at end of file




More information about the pLog-svn mailing list