[pLog-svn] r6429 - in templates/branches/lifetype-1.2: . cityslicker cityslicker/files

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Thu May 1 15:42:09 EDT 2008


Author: jondaley
Date: 2008-05-01 15:42:09 -0400 (Thu, 01 May 2008)
New Revision: 6429

Added:
   templates/branches/lifetype-1.2/cityslicker/
   templates/branches/lifetype-1.2/cityslicker/about.template
   templates/branches/lifetype-1.2/cityslicker/album.template
   templates/branches/lifetype-1.2/cityslicker/albums.template
   templates/branches/lifetype-1.2/cityslicker/clouds.jpg
   templates/branches/lifetype-1.2/cityslicker/commentarticle.template
   templates/branches/lifetype-1.2/cityslicker/commentform.template
   templates/branches/lifetype-1.2/cityslicker/download.gif
   templates/branches/lifetype-1.2/cityslicker/error.gif
   templates/branches/lifetype-1.2/cityslicker/error.template
   templates/branches/lifetype-1.2/cityslicker/files/
   templates/branches/lifetype-1.2/cityslicker/files/Thumbs.db
   templates/branches/lifetype-1.2/cityslicker/files/blankyblank.gif
   templates/branches/lifetype-1.2/cityslicker/files/content_bg.gif
   templates/branches/lifetype-1.2/cityslicker/files/distrustful.gif
   templates/branches/lifetype-1.2/cityslicker/files/divide.gif
   templates/branches/lifetype-1.2/cityslicker/files/dotted.gif
   templates/branches/lifetype-1.2/cityslicker/files/dotted_h.gif
   templates/branches/lifetype-1.2/cityslicker/files/h4_skyscrapers.gif
   templates/branches/lifetype-1.2/cityslicker/files/header.jpg
   templates/branches/lifetype-1.2/cityslicker/files/index.html
   templates/branches/lifetype-1.2/cityslicker/files/linkbg.gif
   templates/branches/lifetype-1.2/cityslicker/files/nav_bg.jpg
   templates/branches/lifetype-1.2/cityslicker/files/pullquote.gif
   templates/branches/lifetype-1.2/cityslicker/files/shadow.png
   templates/branches/lifetype-1.2/cityslicker/folderblue.gif
   templates/branches/lifetype-1.2/cityslicker/footer.template
   templates/branches/lifetype-1.2/cityslicker/header.template
   templates/branches/lifetype-1.2/cityslicker/main.template
   templates/branches/lifetype-1.2/cityslicker/panel.template
   templates/branches/lifetype-1.2/cityslicker/post.template
   templates/branches/lifetype-1.2/cityslicker/postandcomments.template
   templates/branches/lifetype-1.2/cityslicker/posttrackbacks.template
   templates/branches/lifetype-1.2/cityslicker/resource.template
   templates/branches/lifetype-1.2/cityslicker/sample.jpg
   templates/branches/lifetype-1.2/cityslicker/screenshot.jpg
   templates/branches/lifetype-1.2/cityslicker/searchresults.template
   templates/branches/lifetype-1.2/cityslicker/style.css
Log:
new template from bugs.lifetype

Added: templates/branches/lifetype-1.2/cityslicker/about.template
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/about.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/about.template	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,15 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+ <div class="blog">
+  <div class="blogbody">
+  <h2 class="title">{$locale->tr("about")}</h2>
+  <div class="posted"><a href="{$url->templatePage("about")}">{$locale->tr("permalink")}</a></div>
+&nbsp;&nbsp;&nbsp;&nbsp;This template is a clone of the 'georgia blue' style found on <a href='http://www.movabletype.org'>MovableType.org</a>. Also check out <a href='http://www.bookofstyles.com'>The Book of Styles</a> for some very cool styles and templates for websites. It was ported to the <a href='http://www.plogworld.net'>plog</a> blogging system by Nick Gerakines, me :), for the blog that i setup for my mom. Its a very simple layout that allows comments, trackback requests and so on. If you like it or find an error somewhere make a post in the <a href='http://forum.socklabs.com'>forum</a> or email me at <a href='mailto:nick at socklabs.com'>nick at socklabs.com</a>.
+ <hr/>
+ You can change the contents of this page by editing the templates/about.template file.
+  </div>
+  <br />
+ </div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}

Added: templates/branches/lifetype-1.2/cityslicker/album.template
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/album.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/album.template	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,101 @@
+{include file="$blogtemplate/header.template"}
+{include file="$blogtemplate/panel.template"}
+
+<div id="content">
+{assign var="postDate" value=$album->getTimestamp()}
+  <h2>{$locale->tr("album")|capitalize}</h2>
+
+  <div class="post">
+    <h3 class="storytitle"><a href="{$url->albumLink($album)}">{$album->getName()}</a></h3>
+    <div class="meta">
+        {$locale->tr("created")} {$locale->formatDate($postDate,"%d %b, %Y")}
+    </div>    
+    <div class="storycontent"><p>{$album->getDescription()}</p></div>
+ 
+{** 
+    smarty template gets a bit complicated here since we want to show the contents of the album in a nicely
+    arranged table, and that needs some very basic maths... we also need to check after every iteration
+    wether we have to close the current row or start a new one, and so on...
+ **}
+    
+ <!-- album contents go here -->
+<table style="border:0px;width:100%;" summary="{$locale->tr("album")}">
+ <tr>
+  <td style="width:25%;" align="center" >
+   <a 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:25%;" align="center" >
+   <a 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%4}
+   </tr>
+   <tr>
+  {/if}
+ {/foreach}
+
+ <!--- show the resources here -->
+
+ {assign var=resources value=$album->getResources()}
+ {foreach from=$resources item=resource}
+  <td style="width:25%;" align="center" >
+  {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()}" style="border:0px;" src="{$url->resourcePreviewLink($resource)}" />
+    <br/>{$resource->getFileName()}
+   </a>
+  {else}
+   <a 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%4 == 0}
+   </tr>
+   <tr>
+  {/if}
+ {/foreach}
+ <td></td></tr>
+</table>  
+ <!-- end of album contents -->
+ 
+ </div>
+</div>
+
+
+{include file="$blogtemplate/footer.template"}

Added: templates/branches/lifetype-1.2/cityslicker/albums.template
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/albums.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/albums.template	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,27 @@
+{include file="$blogtemplate/header.template"}
+{include file="$blogtemplate/panel.template"}
+<div id="content">
+ <h2>{$locale->tr("albums")|capitalize}</h2>
+{foreach from=$albums item=album}
+ {assign var="aDate" value=$album->getTimestamp()}
+ <div class="post">
+    <h3 class="storytitle"><a href="{$url->albumLink($album)}">{$album->getName()}</a></h3>
+    <div class="meta">
+        {$locale->tr("created")} {$locale->formatDate($aDate,"%d %b, %Y")}
+    </div>
+    <div class="storycontent">
+    <p>
+       {$album->getDescription()|truncate:255:"..."|escape}
+    </p>
+    </div>
+    <div class="feedback">
+      <a href="{$url->albumLink($album)}">  
+       <img src="{$url->getTemplateFile("folderblue.gif")}" width="10" height="11" style="border:0px;" />
+        {$locale->tr("view")} ({$album->getNumResources()})
+       </a>
+    </div>
+ </div>
+{/foreach}
+</div>
+
+{include file="$blogtemplate/footer.template"}

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


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

Added: templates/branches/lifetype-1.2/cityslicker/commentarticle.template
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/commentarticle.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/commentarticle.template	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,6 @@
+{include file="$blogtemplate/header.template"}
+ {if $blogsettings->getValue("comments_enabled")}
+    <h2>{$locale->tr("add_comment")}</h2>
+    {include file="$blogtemplate/commentform.template"}
+ {/if}
+{include file="$blogtemplate/footer.template"}

Added: templates/branches/lifetype-1.2/cityslicker/commentform.template
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/commentform.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/commentform.template	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,24 @@
+<form id="commentform" name="comments_form" action="{$url->getBaseUrl()}/index.php" method="post">
+  <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}"/>
+  <p>
+	<input tabindex="2" id="author" name="userName" />
+	<label for="author">{$locale->tr("comment_username")}</label>
+    </p>
+    <p>
+	<input tabindex="3" id="email" name="userEmail" />
+	<label for="email">{$locale->tr("comment_email")}</label>
+    </p>
+    <p>
+	<input tabindex="4" id="url" name="userUrl" />
+	<label for="url">{$locale->tr("comment_url")}</label>
+    </p>
+  <p>
+    <label for="commentText">{$locale->tr("add_comment")}</label><br />
+    
+    <textarea tabindex="5" id="text" name="commentText" rows="10" cols="50" id="commentText"></textarea><br /><br />
+    <input style="font-weight: bold;" type="submit" name="post" value="&nbsp;{$locale->tr("comment_send")}&nbsp;" /><br /><br />
+  </p>
+</form>

Added: templates/branches/lifetype-1.2/cityslicker/download.gif
===================================================================
(Binary files differ)


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

Added: templates/branches/lifetype-1.2/cityslicker/error.gif
===================================================================
(Binary files differ)


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

Added: templates/branches/lifetype-1.2/cityslicker/error.template
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/error.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/error.template	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,20 @@
+{include file="$blogtemplate/header.template"}
+
+<div id="content">
+
+    <div class="post">
+        <h3 class="storytitle">{$locale->tr("error")}</h3>
+        
+        <div class="meta">
+            {$locale->tr("generated")} {$locale->formatDate($now,"%d %b, %Y")}
+        </div>
+        
+        <div class="storycontent">
+            <img src="{$url->getTemplateFile("error.gif")}" height="32" width="32" alt="Error"/>
+            {$locale->tr($message)}
+        </div>    
+    </div>
+</div>
+
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}

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


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

Added: templates/branches/lifetype-1.2/cityslicker/files/blankyblank.gif
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/cityslicker/files/blankyblank.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/cityslicker/files/content_bg.gif
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/cityslicker/files/content_bg.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/cityslicker/files/distrustful.gif
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/cityslicker/files/distrustful.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/cityslicker/files/divide.gif
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/cityslicker/files/divide.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/cityslicker/files/dotted.gif
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/cityslicker/files/dotted.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/cityslicker/files/dotted_h.gif
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/cityslicker/files/dotted_h.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/cityslicker/files/h4_skyscrapers.gif
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/cityslicker/files/h4_skyscrapers.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

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


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

Added: templates/branches/lifetype-1.2/cityslicker/files/index.html
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/files/index.html	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/files/index.html	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,145 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html>
+	<head>
+		<link rel="stylesheet" type="text/css" href="style.css" />
+		<title></title>
+	</head>
+	<body>
+		<!-- this div contains everything and creates the drop shadow -->
+		<div id="shadow">
+			<!-- this div contains everything but the shadow -->
+			<div id="main">
+				<div id="header">
+					<h1 class="shadow">city slicker</h1>
+					<h1>city slicker</h1>
+				</div>
+				<div id="nav">
+					<ul>
+						<li><a class="orange" href="#">Home</a></li>
+						<li><a class="blue" href="#">Weblog</a></li>
+						<li class="last"><a class="red" href="#">Contact</a></li>
+					</ul>
+				</div>
+				<div id="contentAndSidebar">
+					<div id="sidebar">
+						<h2>Categories</h2>
+						<ul>
+							<li><a href="#">News</a></li>
+							<li><a href="#">Business</a></li>
+							<li><a href="#">Life</a></li>
+							<li><a href="#">The Universe</a></li>
+							<li><a href="#">Everything</a></li>
+						</ul>
+
+						<h2>Pages</h2>
+						<ul>
+							<li><a href="#">An Article</a></li>
+							<li><a href="#">A Rant</a></li>
+							<li><a href="#">Another Page</a></li>
+							<li><a href="#">Yet Another Page</a></li>
+						</ul>
+
+						<h2>Monthly</h2>
+						<ul>
+							<li><a href="#">January</a></li>
+							<li><a href="#">February</a></li>
+							<li><a href="#">Smarch</a></li>
+							<li><a href="#">April</a></li>
+							<li><a href="#">May</a></li>
+							<li><a href="#">June</a></li>
+						</ul>
+
+						<h2>RSS Feeds</h2>
+						<ul>
+							<li><a href="#">Posts</a></li>
+							<li><a href="#">Comments</a></li>
+						</ul>
+
+						<h2>Meta</h2>
+						<ul>
+							<li><a href="#">Login</a></li>
+							<li><a href="http://validator.w3.org/check/referer">Valid <acronym title="eXtensible Hypertext Markup Language">XHTML</acronym></a></li>
+							<li><a href="http://jigsaw.w3.org/css-validator/check/referer">Almost Valid CSS</a></li>
+							<li><a href="#">Whatnot</a></li>
+						</ul>
+
+					</div>
+					<div id="content">
+						<h1>Oh, the urbanity!</h1>
+						<h4>
+							12/05/2005 2:44PM<br />
+							Posted by <a href="#">Chuck Norris</a>
+						</h4>
+						<p>
+							This is &quot;City Slicker&quot;, a fixed two-column layout.  I took a
+							few design cues from some of my favorite OSWD designs, like Bladed (I forget
+							the author of that one, sorry) and of course the designs by the legendary
+							Andreas Viklund.  I also threw in a little bit of (hopefully non-intrusive) color, which makes
+							it a little less professional but a little more interesting to look at.
+							The markup is 100% valid XHTML strict, and the CSS is <span class="italic">mostly</span>
+							valid.  I had to do a few little hacks to make the PNG opacity work in
+							Internet Explorer (See that drop shadow? It's magic!).
+						</p>
+						<p>
+							In any case, the markup and CSS should both be easy to read and edit.
+							For example, I am a fan of <code><span class="bluecode">text-align</span>: <span class="redcode">justify</span>;</code>
+							in my paragraphs, but you might not like it.  Fortunately, it's easy to
+							change!
+						</p>
+						<p>
+							I mostly made this template to be a Wordpress theme, but of course
+							you're free to use it for whatever you like.  Of course, I would
+							appreciate a note - knowing my design is being used gives me the warm fuzzies -
+							but it is open source, so you don't <span class="italic">have</span> to do jack squat!
+						</p>
+						<p>
+							Questions and comments can go to jeremyrsmith&copy;gmail.com (note: that's a copyright sign instead
+							of an &quot;at&quot; sign for de-spamination purposes).
+						</p>
+
+						<div class="divider">
+							<a href="#">0 comments</a> | <a href="#">Leave a comment</a>
+						</div>
+
+						<h1>It's all Greek to me!</h1>
+						<h4 class="distrustful">
+							12/05/2005 2:44PM<br />
+							Posted by <a href="#">James Woods</a>
+						</h4>
+						<p>
+							Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Phasellus luctus, velit ac bibendum tincidunt, libero dolor blandit enim, a imperdiet pede nunc vel urna. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Curabitur fringilla, lectus eget convallis ultricies, elit massa congue neque, ac accumsan dolor mauris eu mi. Nunc convallis dictum enim. Aenean consectetuer augue. In hac habitasse platea dictumst. Mauris odio. In hac habitasse platea dictumst. Ut sed elit. Cras nec eros.
+						</p>
+						<div class="pullquoteRight">
+							<br />Pullquotes are so awesome.
+							<div class="small">-Christopher Walken</div>
+						</div>
+						<p>
+							In hac habitasse platea dictumst. Integer quis nulla. Sed massa. Vivamus eu felis vitae libero bibendum suscipit. Curabitur nunc arcu, suscipit nec, fringilla at, lobortis in, lectus. Nulla hendrerit dignissim orci. Phasellus sed nibh. Suspendisse ante orci, lobortis non, accumsan ac, venenatis et, nibh. Nulla placerat. Nullam pellentesque convallis sem. Praesent porttitor tincidunt mi. Donec convallis commodo turpis. Maecenas mollis vestibulum dolor. Nam diam. Donec mollis nulla tempor eros. Ut accumsan. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Proin laoreet sem auctor neque. Quisque ornare, nisl vitae vestibulum hendrerit, justo massa faucibus lacus, at suscipit nulla risus at orci. Donec eu mauris.
+						</p>
+						<p>
+							Nunc dolor neque, feugiat tempus, bibendum id, hendrerit eu, nunc. Aliquam quis diam. Integer non pede. Donec at leo vitae sapien consequat viverra. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nulla facilisi. Suspendisse potenti. Praesent vitae orci. Aenean vulputate tincidunt elit. Ut ultricies, erat et sollicitudin elementum, elit elit mollis elit, nec varius sapien orci et urna. Maecenas pellentesque. Curabitur auctor nunc non lacus. Cras condimentum felis in neque.
+						</p>
+						<div class="pullquoteLeft">
+							I prefer pullquotes on the left side.  Eh, wot?
+							<div class="small">-Patrick Stewart</div>
+						</div>
+						<p>
+							Praesent eu ligula. Pellentesque pharetra faucibus mauris. Donec pellentesque semper nulla. Ut dictum mi. Phasellus eget tellus eget metus viverra ullamcorper. Ut laoreet massa non tellus. Ut enim lectus, porta porttitor, varius sed, malesuada non, lorem. Praesent pede neque, congue id, ornare at, iaculis non, pede. Morbi vehicula sapien vitae nulla. Pellentesque vitae augue ac mi luctus euismod. Quisque lobortis, neque vehicula vestibulum cursus, leo ante pharetra leo, nec dictum sapien dui vel eros. Sed pharetra viverra risus. Ut diam neque, iaculis eu, ullamcorper et, luctus eu, ipsum. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec pharetra massa in orci. Proin aliquam auctor mauris. Fusce tincidunt lobortis elit. Integer tincidunt, felis ut sodales dapibus, mi tellus imperdiet sem, pellentesque gravida magna quam sed ligula. Aliquam condimentum nunc non lectus.
+						</p>
+
+
+						<div class="divider">
+							<a href="#">0 comments</a> | <a href="#">Leave a comment</a>
+						</div>
+					</div>
+					<div id="footer">
+						Copyright &copy;2005 <a href="#">Your Name Here, Ltd.</a>
+					</div>
+
+				</div>
+			</div>
+		</div>
+
+	</body>
+</html>
\ No newline at end of file

Added: templates/branches/lifetype-1.2/cityslicker/files/linkbg.gif
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/cityslicker/files/linkbg.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

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


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

Added: templates/branches/lifetype-1.2/cityslicker/files/pullquote.gif
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/cityslicker/files/pullquote.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/cityslicker/files/shadow.png
===================================================================
(Binary files differ)


Property changes on: templates/branches/lifetype-1.2/cityslicker/files/shadow.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/branches/lifetype-1.2/cityslicker/folderblue.gif
===================================================================
(Binary files differ)


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

Added: templates/branches/lifetype-1.2/cityslicker/footer.template
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/footer.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/footer.template	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,10 @@
+<div id="footer">
+						Copyright &copy;2005. Based on <a href="http://oswd.org/design/preview/id/2472">CitySlicker of OSWD</a>. Ported to LifeType by <a href="http://www.blogcircle.net">Sarit</a> <a href="#">Your Name Here, Ltd.</a>
+					</div>
+
+				</div>
+			</div>
+		</div>
+
+	</body>
+</html>

Added: templates/branches/lifetype-1.2/cityslicker/header.template
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/header.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/header.template	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,36 @@
+<!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>
+    <title>{$blog->getBlog()}</title>
+    <meta http-equiv="Content-Type" content="text/html;charset={$locale->getCharset()}" />
+    <meta name="generator" content="{$version}" />
+    <meta http-equiv="Content-Language" content="{$locale->getLanguageId()}" />
+    
+    <link rel="stylesheet" title="default" type="text/css" media="screen" href="{$url->getTemplateFile("style.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>
+		<!-- this div contains everything and creates the drop shadow -->
+		<div id="shadow">
+			<!-- this div contains everything but the shadow -->
+			<div id="main">
+				<div id="header">
+					<h1 class="shadow"><a href="{$url->blogLink()}" title="{$blog->getBlog()}">{$blog->getBlog()}</a></h1>
+								</div>
+				<div id="nav">
+				<!--	<ul>
+						<li><a class="orange" href="#">Home</a></li>
+						<li><a class="blue" href="#">Weblog</a></li>
+						<li class="last"><a class="red" href="#">Contact</a></li>
+					</ul>
+                    !-->
+				</div>
+				<div id="contentAndSidebar">
+
+
+

Added: templates/branches/lifetype-1.2/cityslicker/main.template
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/main.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/main.template	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,10 @@
+{include file="$blogtemplate/header.template"}
+
+{include file="$blogtemplate/panel.template"}
+
+<div id="content">
+{foreach from=$posts item=post}
+    {include file="$blogtemplate/post.template"}
+  {/foreach}
+</div>
+{include file="$blogtemplate/footer.template"}

Added: templates/branches/lifetype-1.2/cityslicker/panel.template
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/panel.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/panel.template	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,66 @@
+<div id="sidebar">
+<ul>
+    <li id="search">{$locale->tr("search")}
+	   <form name="search_form" method="post"
+	   	      action="{$url->getIndexUrl()}">
+	      <input type="text" name="searchTerms" value="" size="14" /><br/>
+		  <input type="hidden" name="op" value="Search" />
+		  <input type="hidden" name="blogId" value="{$blog->getId()}"/>
+   </form>
+    </li>
+
+    <li id="wordpress">{$locale->tr("menu")}
+    <ul>
+     <li><a href="{$url->albumLink()}">{$locale->tr("albums")}</a></li>
+    </ul> 
+    </li>
+
+ <li id="categories">
+  {$locale->tr("categories")}
+  <ul>
+   {foreach from=$articlecategories item=articleCategory}
+    <li><a href="{$url->categoryLink($articleCategory)}">{$articleCategory->getName()} [{$articleCategory->getNumArticles()}]</a></li>
+   {/foreach}
+   </ul>
+ </li>
+  
+ <li id="archives">
+  {$locale->tr("archives")}
+  <ul>
+  {foreach from=$archives item=archivelink}
+   <li><a href="{$archivelink->getUrl()}">{$archivelink->getName()}</a></li>
+  {/foreach}
+  </ul>
+  </li>
+  <li id="calendar">
+	{$calendar}
+  </li>
+
+    <li id="meta">
+    Meta
+    <ul>
+     <li><a title="Link to the RSS 0.90 feed." href="{$url->rssLink("rss090")}">RSS 0.90</a></li>
+     <li><a title="Link to the RSS 1.0 feed." href="{$url->rssLink("rss10")}">RSS 1.0</a></li>
+     <li><a title="Link to the RSS 2.0 feed." href="{$url->rssLink("rss20")}">RSS 2.0</a></li>
+     <li><a title="Link to the Atom 0.3 feed." href="{$url->rssLink("atom")}">Atom 0.3</a></li>
+     <li><a href="http://validator.w3.org/check/referer" title="Valid XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
+     
+    </ul> 
+    </li>
+
+  <li id="style"> 
+  {$locale->tr("links")}
+  <ul>
+   {foreach from=$mylinkscategories item=linkcategory}
+     <li><b>{$linkcategory->getName()}</b>
+     <ul>
+      {foreach from=$linkcategory->getLinks() item=link}
+       <li><a href="{$link->getUrl()}" title="{$link->getDescription()}">{$link->getName()}</a></li>
+      {/foreach}
+     </ul>
+    </li>
+   {/foreach}  
+   </ul>
+    </li>
+</ul> 
+</div>

Added: templates/branches/lifetype-1.2/cityslicker/post.template
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/post.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/post.template	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,28 @@
+{assign var="postDate" value=$post->getDateObject()}
+{assign var="postOwner" value=$post->getUserInfo()}
+
+<h1><a href="{$url->postPermalink($post)}">{$post->getTopic()}</a></h1>
+{assign var=postCategory value=$post->getCategory()}
+{assign var=postText value=$post->getText()}
+<h4>
+{$locale->formatDate($postDate,"%d %B, %Y %H:%M")}<br />
+{$locale->tr("posted_by")} {$postOwner->getUsername()}, {foreach name=categories from=$post->getCategories() item=postCategory} 
+    <a href="{$url->categoryLink($postCategory)}"
+		   title="{$postCategory->getName()}">
+		   {$postCategory->getName()}</a>{if !$smarty.foreach.categories.last}, {/if}
+  {/foreach}
+</h4>
+<p>
+    {$postText} 
+</p>
+<div class="divider">
+							  <a href="{$url->postPermalink($post)}#comments" title="{$locale->tr("comment on this")}">
+        {if $post->getTotalComments() eq 0}{$locale->tr("comment on this")}{else}{$post->getTotalComments()} {$locale->tr("comments")|capitalize}{/if}
+    </a> |
+	{if $post->getNumTrackbacks() > 0}
+	  <a href="{$url->postTrackbackStatsLink($post)}" title="{$locale->tr("trackbacks")}">{$post->getNumTrackbacks()} {$locale->tr("trackbacks")|capitalize}</a>
+	{else}
+	  {$post->getNumTrackbacks()} {$locale->tr("trackbacks")|capitalize}
+	{/if}
+						</div>
+

Added: templates/branches/lifetype-1.2/cityslicker/postandcomments.template
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/postandcomments.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/postandcomments.template	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,34 @@
+{include file="$blogtemplate/header.template"}
+{include file="$blogtemplate/panel.template"}
+<div id="content">
+    {assign var="postDate" value=$post->getDateObject()}
+    {assign var="postOwner" value=$post->getUserInfo()}
+    <h2>{$locale->formatDate($postDate,"%d %b, %Y")}</h2>
+          {include file="$blogtemplate/post.template"}
+    
+        <h2 id="comments">{$locale->tr("comments")|capitalize}</h2>
+             
+        {foreach from=$comments item=comment}
+        {assign var=commentText value=$comment->getText()}
+            <span id="comment-{$comment->getId()}">
+                {$commentText}
+                           	<p><cite>{$locale->tr("posted_by")}
+                   {if $comment->getUserUrl() != ""}
+                    <a href="{$comment->getUserUrl()}"}>{$comment->getUsername()}</a>
+                   {else}
+                    {$comment->getUsername()}
+                   {/if}
+                        {assign var=commentDate value=$comment->getDateObject()}
+                   {$locale->formatDate($commentDate, "%d %b %Y, %H:%M")}
+                </cite></p>
+</span>
+        {/foreach}    
+                   
+        {if $blogsettings->getValue("comments_enabled") && $post->getCommentsEnabled()==1}
+            <br style="clear: both;" />
+           <h2>{$locale->tr("add_comment")}</h2>
+          {include file="$blogtemplate/commentform.template"}
+        {/if}
+    </div>
+</div>
+{include file="$blogtemplate/footer.template"}

Added: templates/branches/lifetype-1.2/cityslicker/posttrackbacks.template
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/posttrackbacks.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/posttrackbacks.template	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,17 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+ <div class="blog">
+  <div class="blogbody">
+   <h2 class="title">{$locale->tr("trackbacks_for_article")} "<a href="{$url->postLink($post)}">{$post->getTopic()}</a>"</h2>
+    {foreach from=$trackbacks item=trackback}
+     <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> Date would be here<br/><br/>
+    {/foreach}
+  </div>
+ </div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}

Added: templates/branches/lifetype-1.2/cityslicker/resource.template
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/resource.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/resource.template	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,58 @@
+{include file="$blogtemplate/header.template"}
+{assign var=metadata value=$resource->getMetadataReader()}
+{assign var=updated value=$resource->getTimestamp()}
+<div id="content">
+  <h2>{$locale->tr("resources")|capitalize}</h2>
+<div class="post">
+    <h3 class="storytitle"><a href="{$url->resourceLink($resource)}">{$resource->getFileName()}</a></h3>
+    <div class="meta">
+        {$locale->tr("created")} {$locale->formatDate($updated,"%d %b, %Y")}
+    </div>
+   <div class="storycontent"><p>{$resource->getDescription()}</p></div>
+  {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 class="feedback">
+        <a href="{$url->resourceDownloadLink($resource)}">
+           <img src="{$url->getTemplateFile("download.gif")}" width="10" height="11" alt="Download" style="border:0px;" />
+           {$locale->tr("download")} ({$metadata->getRoundedSize()})
+        </a> 
+    </div>
+</div>
+  <p>
+   <a href="javascript:history.go(-1);">{$locale->tr("back")}</a>
+  </p>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}

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


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

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


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

Added: templates/branches/lifetype-1.2/cityslicker/searchresults.template
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/searchresults.template	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/searchresults.template	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,21 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+   <h2>{$locale->tr("search_results")}: {foreach from=$searchterms item=term}{$term} {/foreach}</h2>
+   <p>
+    {foreach from=$searchresults item=result}
+     <div class="searchresult">
+      {assign var=article value=$result->getArticle()}
+      <a href="{$url->postPermalink($article)}"><h3><b>{$article->getTopic()}</b></h3></a>
+     <div align="right">{foreach name=categories from=$article->getCategories() item=postcategory}
+       <a href="{$url->categoryLink($postcategory)}">{$postcategory->getName()}</a>{if !$smarty.foreach.categories.last}, {/if}
+     {/foreach}</div>
+      <p>
+      {$article->getText()|strip_tags|truncate:300:"...":false}
+      </p>
+     </div>
+     <br/>
+    {/foreach}
+   </p> 
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}

Added: templates/branches/lifetype-1.2/cityslicker/style.css
===================================================================
--- templates/branches/lifetype-1.2/cityslicker/style.css	                        (rev 0)
+++ templates/branches/lifetype-1.2/cityslicker/style.css	2008-05-01 19:42:09 UTC (rev 6429)
@@ -0,0 +1,313 @@
+body
+{
+	background-image: url(files/content_bg.gif);
+	background-color: #ececef;
+	margin: 0px;
+	padding: 0px;
+	font-family: Arial, Helvetica, Sans-serif;
+	font-size: 12px;
+}
+
+#shadow
+{
+	width: 680px;
+	margin-left: auto;
+	margin-right: auto;
+	background-image: url(files/shadow.png);
+	_background-image: url(files/blankyblank.gif);
+	_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='shadow.png',sizingMethod='scale');
+}
+
+#main
+{
+	width: 640px;
+	margin-left: auto;
+	margin-right: auto;
+	border-left: 1px solid black;
+	border-right: 1px solid black;
+	background-color: white;
+}
+
+#header
+{
+	width: 640px;
+	background-image: url(files/header.jpg);
+	height: 170px;
+	border-bottom: 1px solid black;
+	position: relative;
+	
+}
+
+#header h1
+{
+	position: absolute;
+	left: 8px;
+	bottom: 8px;
+	color: white;	
+	font-size: 40px;
+	margin-bottom: 0px;
+}
+
+#header h1.shadow
+{
+	bottom: 6px;
+	left: 11px;
+	color: black;
+}
+
+	
+
+div#nav
+{
+	width: 640px;
+	border-bottom: 1px solid black;
+	height: 25px;
+	background-image: url(files/nav_bg.jpg);
+}
+
+div#nav ul
+{
+	height: 25px;
+	list-style: none;
+	width: 640px;
+	display: inline;
+	margin-left: 0px;
+	padding-left: 0px;
+	
+	
+}
+
+div#nav ul li
+{
+	list-style: none;
+	display: block;
+	width: 20%;
+	float: left;
+	text-align: center;
+	line-height: 25px;
+	font-size: 12px;
+	font-weight: bold;
+	border-right: 1px solid black;
+	
+}
+
+div#nav ul li a
+{
+	width: 100%;
+	height: 25px;
+	
+	display: block;
+	color: black;
+	text-decoration: none;
+}
+
+div#nav ul li.last
+{
+	border-right: 0px;
+	width: 19%;
+}
+
+div#nav ul li a:hover
+{
+	color: white;
+}
+
+div#nav ul li a.orange:hover
+{
+	background-color: orange;
+}
+
+div#nav ul li a.blue:hover
+{
+	background-color: #7683bc;
+}
+
+div#nav ul li a.red:hover
+{
+	background-color: #cd0000;
+}
+
+div#nav ul li a.green:hover
+{
+	background-color: #61af46;
+}
+
+div#nav ul li a.gold:hover
+{
+	background-color: #c1c689;
+}
+
+div#contentAndSidebar
+{
+	width: 640px;
+	background-color: white;
+	
+}
+
+div#sidebar
+{
+	
+	float: right;
+	width: 20%;
+	padding: 12px;
+	background-image: url(files/dotted.gif);
+	background-repeat: repeat-y;
+	height: 100%;
+	margin-top: 20px;
+}
+
+#sidebar h2
+{
+	font-size: 14px;
+	color: #cccccc;
+	background-image: url(files/dotted_h.gif);
+	background-repeat: repeat-x;
+	background-position: bottom;
+	margin-bottom: 0px;
+	padding-bottom: 2px;
+}
+
+#sidebar ul
+{
+	margin: 0px;
+	padding: 0px;
+	
+}
+
+#sidebar li
+{
+	margin: 0px;
+	padding: 0px;
+	padding-top: 4px;
+	padding-bottom: 4px;
+	background-image: url(files/dotted_h.gif);
+	background-repeat: repeat-x;
+	background-position: bottom;
+	list-style: none;
+}
+	
+
+
+div#content
+{
+	width: 70%;
+	padding: 2%;
+	padding-top: 20px;	
+}
+
+#content h1
+{
+	background-image: url(files/dotted_h.gif);
+	background-repeat: repeat-x;
+	background-position: bottom;
+	font-size: 16px;
+	color: #cccccc;
+	margin-bottom: 0px;
+}
+
+#content h4
+{
+	margin-top: 0px;
+	text-align: right;
+	font-size: 11px;
+	color: #cccccc;
+	margin-bottom: 0px;
+	background-image: url(files/h4_skyscrapers.gif);
+	background-repeat: no-repeat;
+	background-position: center left;
+}
+
+#content h4.distrustful
+{
+	background-image: url(files/distrustful.gif);
+}
+
+#content a, #sidebar a, #footer a
+{
+	color: #7683bc;
+	text-decoration: none;
+	background-image: url(files/linkbg.gif);
+	background-repeat: repeat-x;
+	background-position: bottom;
+}
+
+#content p
+{
+	margin-top: 4px;
+	margin-bottom: 6px;
+	text-indent: 2em;
+	text-align: justify;
+	
+}
+
+
+
+.italic
+{
+	font-style: italic;
+}
+
+.bluecode
+{
+	color: #0000ff;
+}
+
+.redcode
+{
+	color: #ee0000;
+}
+
+div.divider
+{
+	padding-bottom: 28px;
+	background-image: url(files/divide.gif);
+	background-repeat: no-repeat;
+	background-position: bottom center;
+	border-top: 1px dotted #EFEFEF;
+	color: #cccccc;
+}
+
+div.pullquoteRight, div.pullquoteLeft
+{
+	background-image: url(files/pullquote.gif);
+	width: 114px;
+	height: 114px;
+	margin: 10px;
+	padding: 18px;
+	font-size: 18px;
+	float: right;
+	text-align: center;
+	border-left: 1px dotted #cccccc;
+}
+
+div.pullquoteLeft
+{
+	float: left;
+	border-left: 0px;
+	border-right: 1px dotted #cccccc;
+}
+
+div.pullquoteRight div.small, div.pullquoteLeft div.small
+{
+	font-size: 11px;
+	text-align: right;
+	color: #cccccc;
+	
+}
+
+#footer
+{
+	border-top: 1px solid #cccccc;
+	border-bottom: 1px solid #cccccc;
+	
+	padding: 4px;
+	margin-left: auto;
+	margin-right: auto;
+	margin-top: 28px;
+	clear: both;
+	background-color: #fafafa;
+	color: #cccccc;
+	text-align: center;
+}
+	
+	



More information about the pLog-svn mailing list