[pLog-svn] r1188 - in templates/trunk: Boxed Boxed-Green Matrix-Code Modish Soft-Blue Soft-Green Soft-Red Very-Clean Vicksburg aubmach base blufill bubble-blue lemons standard_happy

jondaley at devel.plogworld.net jondaley at devel.plogworld.net
Thu Feb 24 01:56:18 GMT 2005


Author: jondaley
Date: 2005-02-24 01:56:18 +0000 (Thu, 24 Feb 2005)
New Revision: 1188

Added:
   templates/trunk/Boxed-Green/searchresults.template
   templates/trunk/Boxed/searchresults.template
   templates/trunk/Matrix-Code/searchresults.template
   templates/trunk/Modish/searchresults.template
   templates/trunk/Soft-Blue/searchresults.template
   templates/trunk/Soft-Green/searchresults.template
   templates/trunk/Soft-Red/searchresults.template
   templates/trunk/Very-Clean/searchresults.template
   templates/trunk/Vicksburg/searchresults.template
   templates/trunk/aubmach/searchresults.template
   templates/trunk/base/searchresults.template
   templates/trunk/blufill/searchresults.template
   templates/trunk/blufill/style.css
   templates/trunk/bubble-blue/searchresults.template
   templates/trunk/bubble-blue/style.css
   templates/trunk/lemons/screenshot.jpg
Removed:
   templates/trunk/blufill/blufill.css
   templates/trunk/bubble-blue/bubble-blue.css
   templates/trunk/standard_happy/linktracker.template
Log:
continuing the update to 1.0.  lots of fun.

Added: templates/trunk/Boxed/searchresults.template
===================================================================
--- templates/trunk/Boxed/searchresults.template	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/Boxed/searchresults.template	2005-02-24 01:56:18 UTC (rev 1188)
@@ -0,0 +1,15 @@
+{include file="$blogtemplate/header.template"}
+   <h2>{$locale->tr("search_results")}</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>
+      <p>
+      {$article->getText()|strip_tags|truncate:300:"...":false}
+      </p>
+     </div>
+     <br/>
+    {/foreach}
+   </p> 
+{include file="$blogtemplate/footer.template"}

Added: templates/trunk/Boxed-Green/searchresults.template
===================================================================
--- templates/trunk/Boxed-Green/searchresults.template	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/Boxed-Green/searchresults.template	2005-02-24 01:56:18 UTC (rev 1188)
@@ -0,0 +1,15 @@
+{include file="$blogtemplate/header.template"}
+   <h2>{$locale->tr("search_results")}</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>
+      <p>
+      {$article->getText()|strip_tags|truncate:300:"...":false}
+      </p>
+     </div>
+     <br/>
+    {/foreach}
+   </p> 
+{include file="$blogtemplate/footer.template"}

Added: templates/trunk/Matrix-Code/searchresults.template
===================================================================
--- templates/trunk/Matrix-Code/searchresults.template	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/Matrix-Code/searchresults.template	2005-02-24 01:56:18 UTC (rev 1188)
@@ -0,0 +1,15 @@
+{include file="$blogtemplate/header.template"}
+   <h2>{$locale->tr("search_results")}</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>
+      <p>
+      {$article->getText()|strip_tags|truncate:300:"...":false}
+      </p>
+     </div>
+     <br/>
+    {/foreach}
+   </p> 
+{include file="$blogtemplate/footer.template"}

Added: templates/trunk/Modish/searchresults.template
===================================================================
--- templates/trunk/Modish/searchresults.template	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/Modish/searchresults.template	2005-02-24 01:56:18 UTC (rev 1188)
@@ -0,0 +1,15 @@
+{include file="$blogtemplate/header.template"}
+   <h2>{$locale->tr("search_results")}</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>
+      <p>
+      {$article->getText()|strip_tags|truncate:300:"...":false}
+      </p>
+     </div>
+     <br/>
+    {/foreach}
+   </p> 
+{include file="$blogtemplate/footer.template"}

Added: templates/trunk/Soft-Blue/searchresults.template
===================================================================
--- templates/trunk/Soft-Blue/searchresults.template	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/Soft-Blue/searchresults.template	2005-02-24 01:56:18 UTC (rev 1188)
@@ -0,0 +1,15 @@
+{include file="$blogtemplate/header.template"}
+   <h2>{$locale->tr("search_results")}</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>
+      <p>
+      {$article->getText()|strip_tags|truncate:300:"...":false}
+      </p>
+     </div>
+     <br/>
+    {/foreach}
+   </p> 
+{include file="$blogtemplate/footer.template"}

Added: templates/trunk/Soft-Green/searchresults.template
===================================================================
--- templates/trunk/Soft-Green/searchresults.template	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/Soft-Green/searchresults.template	2005-02-24 01:56:18 UTC (rev 1188)
@@ -0,0 +1,15 @@
+{include file="$blogtemplate/header.template"}
+   <h2>{$locale->tr("search_results")}</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>
+      <p>
+      {$article->getText()|strip_tags|truncate:300:"...":false}
+      </p>
+     </div>
+     <br/>
+    {/foreach}
+   </p> 
+{include file="$blogtemplate/footer.template"}

Added: templates/trunk/Soft-Red/searchresults.template
===================================================================
--- templates/trunk/Soft-Red/searchresults.template	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/Soft-Red/searchresults.template	2005-02-24 01:56:18 UTC (rev 1188)
@@ -0,0 +1,15 @@
+{include file="$blogtemplate/header.template"}
+   <h2>{$locale->tr("search_results")}</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>
+      <p>
+      {$article->getText()|strip_tags|truncate:300:"...":false}
+      </p>
+     </div>
+     <br/>
+    {/foreach}
+   </p> 
+{include file="$blogtemplate/footer.template"}

Added: templates/trunk/Very-Clean/searchresults.template
===================================================================
--- templates/trunk/Very-Clean/searchresults.template	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/Very-Clean/searchresults.template	2005-02-24 01:56:18 UTC (rev 1188)
@@ -0,0 +1,15 @@
+{include file="$blogtemplate/header.template"}
+   <h2>{$locale->tr("search_results")}</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>
+      <p>
+      {$article->getText()|strip_tags|truncate:300:"...":false}
+      </p>
+     </div>
+     <br/>
+    {/foreach}
+   </p> 
+{include file="$blogtemplate/footer.template"}

Added: templates/trunk/Vicksburg/searchresults.template
===================================================================
--- templates/trunk/Vicksburg/searchresults.template	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/Vicksburg/searchresults.template	2005-02-24 01:56:18 UTC (rev 1188)
@@ -0,0 +1,15 @@
+{include file="$blogtemplate/header.template"}
+   <h2>{$locale->tr("search_results")}</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>
+      <p>
+      {$article->getText()|strip_tags|truncate:300:"...":false}
+      </p>
+     </div>
+     <br/>
+    {/foreach}
+   </p> 
+{include file="$blogtemplate/footer.template"}

Added: templates/trunk/aubmach/searchresults.template
===================================================================
--- templates/trunk/aubmach/searchresults.template	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/aubmach/searchresults.template	2005-02-24 01:56:18 UTC (rev 1188)
@@ -0,0 +1,15 @@
+{include file="grey/header.template"}
+   <h2>{$locale->tr("search_results")}</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>
+      <p>
+      {$article->getText()|strip_tags|truncate:300:"...":false}
+      </p>
+     </div>
+     <br/>
+    {/foreach}
+   </p> 
+{include file="grey/footer.template"}

Added: templates/trunk/base/searchresults.template
===================================================================
--- templates/trunk/base/searchresults.template	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/base/searchresults.template	2005-02-24 01:56:18 UTC (rev 1188)
@@ -0,0 +1,15 @@
+{include file="$blogtemplate/header.template"}
+   <h2>{$locale->tr("search_results")}</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>
+      <p>
+      {$article->getText()|strip_tags|truncate:300:"...":false}
+      </p>
+     </div>
+     <br/>
+    {/foreach}
+   </p> 
+{include file="$blogtemplate/footer.template"}

Deleted: templates/trunk/blufill/blufill.css
===================================================================
--- templates/trunk/blufill/blufill.css	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/blufill/blufill.css	2005-02-24 01:56:18 UTC (rev 1188)
@@ -1,428 +0,0 @@
-body {
- background: #73AACB repeat-y fixed center url(bg.png);
- text-align: center;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 0px;
- margin-top: 0px;
- padding-left:1px;
-}
-A { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #999966; text-decoration: none; font-weight:bold; } 
-A:link{ color: #999966; text-decoration: none; } 
-A:visited{ color: #999966; text-decoration: none; } 
-A:active{ color: #99CC66;  } 
-A:hover{ color: #99CC66;  }
-h1, h2, h3 {
- margin: 0px;
- padding: 0px;
-}
-
-
-#banner {
- border-top:4px solid #96C6E3;
- background:#96C6E3;
-}
-#banner a,
-#banner a:link,
-#banner a:visited,
-#banner a:active,
-#banner a:hover {
- font-family:verdana, arial, sans-serif;
- font-size: x-large;
- color: #FFF;
- text-decoration: none;
-}
-
-#bannertitle {
- font-family:verdana, arial, sans-serif;
- position: absolute;
- left: 220px;
- top: 50px;
- width: 480px;
- text-align: center;
- font-weight: bold;
- font-size: 20px;
- color: #ffffff;
- letter-spacing: .2em;
-}
-
-#navbar,
-#navbar a,
-#navbar a:link,
-#navbar a:visited,
-#navbar a:active {
- background: #96C6E3; 
- padding-bottom: 3px; 
- border-bottom:1px dashed #336699; 
- font-family: Arial, Helvetica, sans-serif;
- color: #fff;
- font-size: 12px;
-}
-
-#navbar a:hover {
- color: #4C93BF;
- text-decoration: none;
-}
-#footer{
- text-decoration: none; 
- font-weight:bold;
- font-family:verdana, arial, sans-serif;
- color:#fff;
- font-size:8px;
- border-bottom:4px solid #96C6E3;
- border-top: 1px dashed #336699;
- background:#4C93BF;
- padding:6px; 
- text-transform:uppercase;
- text-align: center;
- letter-spacing: .1em;
-}
-#footer a,
-#footer a:link,
-#footer a:visited,
-#footer a:active {
- text-decoration: none; 
- font-weight:bold;
- font-family:verdana, arial, sans-serif;
- color:#fff;
- font-size:8px;
- background:#4C93BF;
- padding:2px; 
- text-transform:uppercase;
- text-align: center;
- letter-spacing: .1em;
-} 
-#footer a:hover {
- font-family:verdana, arial, sans-serif;
- font-size: 8px;
- color: #7DD1FD;
- text-decoration: none;
-}
-
-.description {
- font-family:verdana, arial, sans-serif;
- color:#003366;
- font-size:x-small;
- font-weight:bold;
- background:#C9ECCB;
- text-transform:none;
-}
-
-#content {
- /*margin-right:0.5%;*/
- text-align: left;
-  margin-bottom: 15px;
-}
-
-#links {
-
- margin-left: 3px;
- margin-right: 3px;
- /*border-left: 1px dotted #999;*/
- vertical-align: top;
- width: 155px;
- text-align: left;
-}
-.dot{
-	vertical-align: middle;
-	margin-right:7px;
-	border: 0px;
-} 
- 
- 
-#links ul {
- list-style: none;
- padding-left: 0px;
- margin-left: 0px;
- padding-top: 1px;
- padding-bottom: 1px;
- margin-top: 8px;
- margin-bottom: 8px;
- font-size: 10px;
- font-family:georgia, verdana, arial, sans-serif; 
- letter-spacing: .1em;
-} 
-
-#links ul a,
-#links ul a:link,
-#links ul a:visited,
-#links ul a:active,
-#links ul a:hover {
- font-weight: normal;
- text-decoration: none;
- font-family:georgia, verdana, arial, sans-serif; 
- font-size: 10px;
- letter-spacing: .0em;
-}
-
-#blog {
-  padding-left:1%;
-  padding-top:0px;
-  padding-right:1%;
-  border-right:1px solid #EAEAEA;
-}
-
-.blogbody {
- font-family:georgia, verdana, arial, sans-serif;
- color:#333;
- font-size:12px;
- font-weight:normal;
- line-height:140%;
- padding-left:3px;
- padding-right:3px;
- padding-top:5px;
-}
-
-.blogbody a,
-.blogbody a:link,
-.blogbody a:visited,
-.blogbody a:active,
-.blogbody a:hover {
- font-weight: normal;
- text-decoration: none;
- font-family: Arial, Helvetica, sans-serif;
-}
-
-.albumbody {
- font-family:georgia, verdana, arial, sans-serif;
- color:#333;
- font-size:small;
- font-weight:normal;
- line-height:140%;
- padding-left:10px;
- padding-right:3px;
- padding-top:0px;
- padding-bottom: 5px;
- border-bottom: 1px solid #999999;
- margin-bottom: 10px;
-}
-.albumbody a,
-.albumbody a:link,
-.albumbody a:visited,
-.albumbody a:active,
-.albumbody a:hover {
- font-weight: normal;
- text-decoration: none;
-}
-
-
-.title{
- font-family: Arial, Helvetica, sans-serif;
- font-size: 10px;
- color: #003366;
- text-transform: uppercase;
- font-weight:bold;
- border-bottom: 1px solid #999;
- margin-left: 3px;
- margin-right: 3px;
-}
-.postby{
-font-family:georgia, verdana, arial, sans-serif; 
-font-size: 9px; 
-color: #003366;
-margin-bottom:5px; 
-margin-right: 5px;
-margin-top: 2px;
-text-align: right;
-}
-#menu {
- margin-bottom:15px;
-}
-
-.date{ 
- font-family:georgia, verdana, arial, sans-serif; 
- font-size: 10px; 
- color: #666; 
- border-bottom:1px solid #999;
- padding:5px;
- margin-bottom:1px;
- font-weight:normal;
-}
-
-.album{ 
- font-family:georgia, verdana, arial, sans-serif; 
- font-size: small; 
- color: #666; 
- padding:5px;
- font-weight:normal;
-}
-
-.posted{ 
-font-family: Arial, Helvetica, sans-serif; 
-font-size: 12px; 
-color: #003366;
-margin-bottom:5px; 
-margin-top: 5px
-}
-
-.calendar {
-font-family:verdana, arial, sans-serif;
-color:#666;
-font-size:x-small;
-font-weight:normal;
-  background:#FFF;
-  line-height:140%;
-  padding:2px;
-  text-align:center;
-}
-
-.calendarhead {
-font-family:verdana, arial, sans-serif;
-color:#003366;
-font-size:x-small;
-font-weight:bold;
-  background:#FFF;
-  line-height:140%;
-  padding:2px;
-}
-
-.side {
-font-family:georgia, verdana, arial, sans-serif;
-color:#333;
-font-size:x-small;
-font-weight:normal;
-  line-height:100%;
-  padding:5px;
-}
-
-.sidetitle {
-font-family:verdana, arial, sans-serif;
-color:#666;
-font-size:10px;
-font-weight:bold;
-  background:#EEE;
-  line-height:160%;
-  padding:2px;
-  border-top:6px solid #e6e6e6;;
-  text-align:center;
-  text-transform:uppercase;
-letter-spacing: .1em;  
-}
-
-.syndicate {
-font-family:verdana, arial, sans-serif;
-font-size:xx-small;
-font-weight:bold;
-  line-height:140%;
-  padding:2px;
-  margin-top:10px;
-  text-align:center;
-  background:#EEE;  
- }
-
-.powered {
-font-family:verdana, arial, sans-serif;
-color:#003366;
-font-size:xx-small;
-font-weight:bold;
-border-top:1px solid #CCC;
-border-bottom:1px solid #CCC;
-line-height:140%;
-text-transform:uppercase; 
-padding:2px;
-margin-top:10px;
-text-align:center;
-letter-spacing: .2em  
-}
-
-
-.comments-body {
-font-family:verdana, arial, sans-serif;
-color:#666;
-font-size:12px;
-font-weight:normal;
-}
-.comments-main {
-font-family:georgia, verdana, arial, sans-serif;
-color:#666;
-font-size:11px;
-font-weight:normal;
-margin-left: 5px;
-margin-right: 5px;
-}
-
-.comments-post {
-font-family:verdana, arial, sans-serif;
-color:#666;
-font-size:10px;
-font-weight:normal;
-margin-right: 5px;
-}
-
-.trackback-body {
-font-family:verdana, arial, sans-serif;
-color:#666;
-font-size:small;
-font-weight:normal;
-  line-height:140%;
-  padding:10px;
-}
-
-.trackback-url {
- font-family:verdana, arial, sans-serif;
- color:#666;
- font-size:small;
- font-weight:normal;
- line-height:140%;
- padding:10px;
- border:1px dashed #CCC;
-}
-
-.trackback-post {
- font-family:verdana, arial, sans-serif;
- color:#666;
- font-size:x-small;
- font-weight:normal;
-}
-
-.comments-head{ 
- font-family: georgia, verdana, arial, sans-serif;
- font-size: 11px;
- color: #666;
- border-bottom:1px solid #999;
- padding:5px;
- font-weight:normal;
- margin-top:15px;
- margin-left:5px;
- margin-right:5px;
- text-align: left;
-}
-
-#banner-commentspop {
- border-top:4px solid #D5FFCB;
- background:#C4DB8D;
-}
-
-/**
- * styles for the little toolbar on top of the comment text box
- */
-#toolbar {	
- margin: 0;
- padding: 0;
-}
-			
-.button {
- border: 1px solid ButtonFace;
- margin: 1px; 
-}
-			
-.button_raised	{ 
- border-top: 1px solid ButtonHighlight;
- border-left: 1px solid ButtonHighlight;
- border-bottom: 1px solid #999;
- border-right: 1px solid #999;
- margin: 1px;
- }
-			
-.button_pressed	{
- border-top: 1px solid #999;
- border-left: 1px solid #999;
- border-bottom: 1px solid ButtonHighlight;
- border-right: 1px solid ButtonHighlight;
- margin: 1px;
-}
-.menu { 
- text-decoration : none; 
- font-family: arial, verdana, sans-serif; 
- font-size: 10pt; 
- color: #000000; }
\ No newline at end of file

Added: templates/trunk/blufill/searchresults.template
===================================================================
--- templates/trunk/blufill/searchresults.template	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/blufill/searchresults.template	2005-02-24 01:56:18 UTC (rev 1188)
@@ -0,0 +1,15 @@
+{include file="$blogtemplate/header.template"}
+   <h2>{$locale->tr("search_results")}</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>
+      <p>
+      {$article->getText()|strip_tags|truncate:300:"...":false}
+      </p>
+     </div>
+     <br/>
+    {/foreach}
+   </p> 
+{include file="$blogtemplate/footer.template"}

Added: templates/trunk/blufill/style.css
===================================================================
--- templates/trunk/blufill/style.css	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/blufill/style.css	2005-02-24 01:56:18 UTC (rev 1188)
@@ -0,0 +1,428 @@
+body {
+ background: #73AACB repeat-y fixed center url(bg.png);
+ text-align: center;
+ margin-left: auto;
+ margin-right: auto;
+ margin-bottom: 0px;
+ margin-top: 0px;
+ padding-left:1px;
+}
+A { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #999966; text-decoration: none; font-weight:bold; } 
+A:link{ color: #999966; text-decoration: none; } 
+A:visited{ color: #999966; text-decoration: none; } 
+A:active{ color: #99CC66;  } 
+A:hover{ color: #99CC66;  }
+h1, h2, h3 {
+ margin: 0px;
+ padding: 0px;
+}
+
+
+#banner {
+ border-top:4px solid #96C6E3;
+ background:#96C6E3;
+}
+#banner a,
+#banner a:link,
+#banner a:visited,
+#banner a:active,
+#banner a:hover {
+ font-family:verdana, arial, sans-serif;
+ font-size: x-large;
+ color: #FFF;
+ text-decoration: none;
+}
+
+#bannertitle {
+ font-family:verdana, arial, sans-serif;
+ position: absolute;
+ left: 220px;
+ top: 50px;
+ width: 480px;
+ text-align: center;
+ font-weight: bold;
+ font-size: 20px;
+ color: #ffffff;
+ letter-spacing: .2em;
+}
+
+#navbar,
+#navbar a,
+#navbar a:link,
+#navbar a:visited,
+#navbar a:active {
+ background: #96C6E3; 
+ padding-bottom: 3px; 
+ border-bottom:1px dashed #336699; 
+ font-family: Arial, Helvetica, sans-serif;
+ color: #fff;
+ font-size: 12px;
+}
+
+#navbar a:hover {
+ color: #4C93BF;
+ text-decoration: none;
+}
+#footer{
+ text-decoration: none; 
+ font-weight:bold;
+ font-family:verdana, arial, sans-serif;
+ color:#fff;
+ font-size:8px;
+ border-bottom:4px solid #96C6E3;
+ border-top: 1px dashed #336699;
+ background:#4C93BF;
+ padding:6px; 
+ text-transform:uppercase;
+ text-align: center;
+ letter-spacing: .1em;
+}
+#footer a,
+#footer a:link,
+#footer a:visited,
+#footer a:active {
+ text-decoration: none; 
+ font-weight:bold;
+ font-family:verdana, arial, sans-serif;
+ color:#fff;
+ font-size:8px;
+ background:#4C93BF;
+ padding:2px; 
+ text-transform:uppercase;
+ text-align: center;
+ letter-spacing: .1em;
+} 
+#footer a:hover {
+ font-family:verdana, arial, sans-serif;
+ font-size: 8px;
+ color: #7DD1FD;
+ text-decoration: none;
+}
+
+.description {
+ font-family:verdana, arial, sans-serif;
+ color:#003366;
+ font-size:x-small;
+ font-weight:bold;
+ background:#C9ECCB;
+ text-transform:none;
+}
+
+#content {
+ /*margin-right:0.5%;*/
+ text-align: left;
+  margin-bottom: 15px;
+}
+
+#links {
+
+ margin-left: 3px;
+ margin-right: 3px;
+ /*border-left: 1px dotted #999;*/
+ vertical-align: top;
+ width: 155px;
+ text-align: left;
+}
+.dot{
+	vertical-align: middle;
+	margin-right:7px;
+	border: 0px;
+} 
+ 
+ 
+#links ul {
+ list-style: none;
+ padding-left: 0px;
+ margin-left: 0px;
+ padding-top: 1px;
+ padding-bottom: 1px;
+ margin-top: 8px;
+ margin-bottom: 8px;
+ font-size: 10px;
+ font-family:georgia, verdana, arial, sans-serif; 
+ letter-spacing: .1em;
+} 
+
+#links ul a,
+#links ul a:link,
+#links ul a:visited,
+#links ul a:active,
+#links ul a:hover {
+ font-weight: normal;
+ text-decoration: none;
+ font-family:georgia, verdana, arial, sans-serif; 
+ font-size: 10px;
+ letter-spacing: .0em;
+}
+
+#blog {
+  padding-left:1%;
+  padding-top:0px;
+  padding-right:1%;
+  border-right:1px solid #EAEAEA;
+}
+
+.blogbody {
+ font-family:georgia, verdana, arial, sans-serif;
+ color:#333;
+ font-size:12px;
+ font-weight:normal;
+ line-height:140%;
+ padding-left:3px;
+ padding-right:3px;
+ padding-top:5px;
+}
+
+.blogbody a,
+.blogbody a:link,
+.blogbody a:visited,
+.blogbody a:active,
+.blogbody a:hover {
+ font-weight: normal;
+ text-decoration: none;
+ font-family: Arial, Helvetica, sans-serif;
+}
+
+.albumbody {
+ font-family:georgia, verdana, arial, sans-serif;
+ color:#333;
+ font-size:small;
+ font-weight:normal;
+ line-height:140%;
+ padding-left:10px;
+ padding-right:3px;
+ padding-top:0px;
+ padding-bottom: 5px;
+ border-bottom: 1px solid #999999;
+ margin-bottom: 10px;
+}
+.albumbody a,
+.albumbody a:link,
+.albumbody a:visited,
+.albumbody a:active,
+.albumbody a:hover {
+ font-weight: normal;
+ text-decoration: none;
+}
+
+
+.title{
+ font-family: Arial, Helvetica, sans-serif;
+ font-size: 10px;
+ color: #003366;
+ text-transform: uppercase;
+ font-weight:bold;
+ border-bottom: 1px solid #999;
+ margin-left: 3px;
+ margin-right: 3px;
+}
+.postby{
+font-family:georgia, verdana, arial, sans-serif; 
+font-size: 9px; 
+color: #003366;
+margin-bottom:5px; 
+margin-right: 5px;
+margin-top: 2px;
+text-align: right;
+}
+#menu {
+ margin-bottom:15px;
+}
+
+.date{ 
+ font-family:georgia, verdana, arial, sans-serif; 
+ font-size: 10px; 
+ color: #666; 
+ border-bottom:1px solid #999;
+ padding:5px;
+ margin-bottom:1px;
+ font-weight:normal;
+}
+
+.album{ 
+ font-family:georgia, verdana, arial, sans-serif; 
+ font-size: small; 
+ color: #666; 
+ padding:5px;
+ font-weight:normal;
+}
+
+.posted{ 
+font-family: Arial, Helvetica, sans-serif; 
+font-size: 12px; 
+color: #003366;
+margin-bottom:5px; 
+margin-top: 5px
+}
+
+.calendar {
+font-family:verdana, arial, sans-serif;
+color:#666;
+font-size:x-small;
+font-weight:normal;
+  background:#FFF;
+  line-height:140%;
+  padding:2px;
+  text-align:center;
+}
+
+.calendarhead {
+font-family:verdana, arial, sans-serif;
+color:#003366;
+font-size:x-small;
+font-weight:bold;
+  background:#FFF;
+  line-height:140%;
+  padding:2px;
+}
+
+.side {
+font-family:georgia, verdana, arial, sans-serif;
+color:#333;
+font-size:x-small;
+font-weight:normal;
+  line-height:100%;
+  padding:5px;
+}
+
+.sidetitle {
+font-family:verdana, arial, sans-serif;
+color:#666;
+font-size:10px;
+font-weight:bold;
+  background:#EEE;
+  line-height:160%;
+  padding:2px;
+  border-top:6px solid #e6e6e6;;
+  text-align:center;
+  text-transform:uppercase;
+letter-spacing: .1em;  
+}
+
+.syndicate {
+font-family:verdana, arial, sans-serif;
+font-size:xx-small;
+font-weight:bold;
+  line-height:140%;
+  padding:2px;
+  margin-top:10px;
+  text-align:center;
+  background:#EEE;  
+ }
+
+.powered {
+font-family:verdana, arial, sans-serif;
+color:#003366;
+font-size:xx-small;
+font-weight:bold;
+border-top:1px solid #CCC;
+border-bottom:1px solid #CCC;
+line-height:140%;
+text-transform:uppercase; 
+padding:2px;
+margin-top:10px;
+text-align:center;
+letter-spacing: .2em  
+}
+
+
+.comments-body {
+font-family:verdana, arial, sans-serif;
+color:#666;
+font-size:12px;
+font-weight:normal;
+}
+.comments-main {
+font-family:georgia, verdana, arial, sans-serif;
+color:#666;
+font-size:11px;
+font-weight:normal;
+margin-left: 5px;
+margin-right: 5px;
+}
+
+.comments-post {
+font-family:verdana, arial, sans-serif;
+color:#666;
+font-size:10px;
+font-weight:normal;
+margin-right: 5px;
+}
+
+.trackback-body {
+font-family:verdana, arial, sans-serif;
+color:#666;
+font-size:small;
+font-weight:normal;
+  line-height:140%;
+  padding:10px;
+}
+
+.trackback-url {
+ font-family:verdana, arial, sans-serif;
+ color:#666;
+ font-size:small;
+ font-weight:normal;
+ line-height:140%;
+ padding:10px;
+ border:1px dashed #CCC;
+}
+
+.trackback-post {
+ font-family:verdana, arial, sans-serif;
+ color:#666;
+ font-size:x-small;
+ font-weight:normal;
+}
+
+.comments-head{ 
+ font-family: georgia, verdana, arial, sans-serif;
+ font-size: 11px;
+ color: #666;
+ border-bottom:1px solid #999;
+ padding:5px;
+ font-weight:normal;
+ margin-top:15px;
+ margin-left:5px;
+ margin-right:5px;
+ text-align: left;
+}
+
+#banner-commentspop {
+ border-top:4px solid #D5FFCB;
+ background:#C4DB8D;
+}
+
+/**
+ * styles for the little toolbar on top of the comment text box
+ */
+#toolbar {	
+ margin: 0;
+ padding: 0;
+}
+			
+.button {
+ border: 1px solid ButtonFace;
+ margin: 1px; 
+}
+			
+.button_raised	{ 
+ border-top: 1px solid ButtonHighlight;
+ border-left: 1px solid ButtonHighlight;
+ border-bottom: 1px solid #999;
+ border-right: 1px solid #999;
+ margin: 1px;
+ }
+			
+.button_pressed	{
+ border-top: 1px solid #999;
+ border-left: 1px solid #999;
+ border-bottom: 1px solid ButtonHighlight;
+ border-right: 1px solid ButtonHighlight;
+ margin: 1px;
+}
+.menu { 
+ text-decoration : none; 
+ font-family: arial, verdana, sans-serif; 
+ font-size: 10pt; 
+ color: #000000; }
\ No newline at end of file

Deleted: templates/trunk/bubble-blue/bubble-blue.css
===================================================================
--- templates/trunk/bubble-blue/bubble-blue.css	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/bubble-blue/bubble-blue.css	2005-02-24 01:56:18 UTC (rev 1188)
@@ -1,245 +0,0 @@
-body {
-	margin:10px 0px; 
-	padding:0px;
-	text-align:center;
-	font:12px arial, times new roman, lucida sans unicode, sans-serif;
-	color:#333;
-	background:#fff url("bk31.gif") fixed;
-	}
-
-h1 {
-	font:bold italic 20px times new roman, lucida sans unicode, sans-serif;
-	margin-top:20px;
-	background: transparent;
-	}
-
-h2 {
-	color:#FFC0C0;
-	font:bold 15px times new roman, times, sans-serif;
-	margin-top: 15px;
-	margin-bottom: 2px;
-	background-color: #FFA0A0;
-	}
-h3 {
-	color:#666;
-	font: bold 13px/18px lucida sans unicode, times new roman, times, sans-serif;
-	margin-top: 15px;
-	margin-bottom: 2px;
-	background-color: #A0A0FF;
-    border: 1px solid #666;
-    border-width: 0px 0px 1px 0px;
-	}
-
-h4 {	background-color: #FFFFA0;
-	font: 12px times new roman, arial, sans-serif;
-	letter-spacing: 0.09em;
-	text-transform: uppercase;
-	margin: 0px;
-	padding: 0px;
-	}
-
-.date {
-	font: 10px verdana, arial, helvetica, sans-serif;
-	letter-spacing: 0.09em;
-	}
-
-.footer {
-	font:10px verdana, arial, helvetica, sans-serif;
-	color: #666;
-	background: transparent;
-	text-align: right;
-	}
-
-.Upgrade {
-	display: none;
-	font-weight: bold;
-      }
-
-p {
-	line-height:1.8;
-	margin:10px 0px;
-	}
-
-ol, ul {    
-	margin-top:0;
-	margin-bottom:10px;
-	line-height:1.8;
-	}
-
-#Container {
-	width:850px;
-	margin:0px auto;
-	text-align:left;
-	padding:0px;
-	border: 1px solid #ccc;
-	background:#fff url("bk31b.gif");
-	color: #333;
-	}
-
-#Main {
-	width:808px;
-	float: left;
-	margin-right: 10px;
-	margin-left: 10px;
-	text-align:center;
-	padding:0px;
-	border: 1px solid #ccc;
-	background:#fff url("bk31b.gif");
-	color: #333;
-	}
-	
-#Resource-Container {
-	width:850px;
-	margin:0px auto;
-	text-align:left;
-	padding:0px;
-	border: 1px solid #ccc;
-	background-color:#fff;
-	color: #333;
-	}	
-	
-#Resource-Container a:link {
- text-decoration: none;
-
-}
-	
-	
-#Resource-Main {
-	width:850px;
-	padding:0px;
-	border-top: 1px solid #ccc;
-	background-color:#fff;
-	color: #333;
-	text-decoration: none;
-	}
-	
-#Resource-Desc {
-    padding: 10px;
-    text-decoration: none;
-}
-
-#Resource-Desc a:link, 
-#Resource-Desc a,
-#Resource-Desc a:href
-#Resource-Desc a:hover {
- text-decoration: none;
- border: 0px;
-}
-	
-
-#Container>#Main {margin-left: 20px;}
-
-#Top {    background:#7F7FFF url('../imgs/plog_top.gif') no-repeat;
-height: auto;
-width: auto;
-	text-align:right;
-	padding:10px;
-	border-bottom: 0px;
-	border-right: 0px;
-	color: #333;
-	/*  background:#ddd; */
-	}
-
-#Topmenu {
-	text-align:center;
-	padding:5px 10px;
-	border-top:1px dashed #ccc;
-	border-bottom: 0px;
-	background:#fff url("bk31b.gif");
-	font:12px verdana, arial, helvetica, sans-serif;
-	color:#333;
-	text-transform: uppercase;
-	}
-
-#Content {
-	width: 508px;
-	float: left;
-	text-align:left;
-	margin:0px;
-	padding:10px;
-	border-right: 1px solid #ccc;
-	border-left: 1px solid #ccc;
-	color: #333;
-background:#fff url("bk31b.gif");
-	/* background-color:#fff; */
-	}
-
-#Sidebar-l {
-	width: 130px;
-	float: left;
-	font:12px/1.5 trebuchet ms, verdana, arial, helvetica, sans-serif;
-	color:#666;
-	text-align:left;
-	padding:10px;
-background:#fff url("bk31b.gif");
-	/* background-color:#fff; */
-	}
-
-#Sidebar-r {
-	width: 130px;
-	float: left;
-	font:12px/1.5 trebuchet ms, verdana, arial, helvetica, sans-serif;
-	color:#666;
-	text-align:left;
-	padding:10px;
-background:#fff url("bk31b.gif");
-	/* background-color:#fff; */
-	}
-
-.Sidetitle {
-	text-align: center;
-	border-top: 1px solid #ccc;
-	border-bottom: 1px solid #ccc;
-	color: #333;
-	background: #eee;
-    text-transform: uppercase;
-	}
-
-#Bottommenu {
-	text-align:center;
-	padding:10px 5px;
-	border-top:0px;
-	border-bottom:1px dashed #ccc;
-	background:#fff url("bk31b.gif");
-	font:10px verdana, arial, helvetica, sans-serif;
-	color:#333;
-	text-transform: uppercase;
-	}
-
-#Bottom {
-	text-align:center; 
-	padding:10px;
-	border-top: 0px;
-background:#fff url("bk31b.gif");
-	/* background-color:#d0d0FF; */
-	font:10px verdana, arial, helvetica, sans-serif;
-	color:#333;
-	text-transform: uppercase;
-	}
-
-a {     font:11px verdana, arial, helvetica, sans-serif;
-	color:#666;
-	text-decoration:none;
-	background-color: #FFD0D0;
-	}
-
-a:link{color: #666; border-bottom: 1px dashed #666; background-color: #FFD0D0;}
-a:visited {color: #666; border-bottom: 1px dashed #666; background-color: #D0FFD0;}
-a:hover {color: #666; border-bottom: 1px solid #666; background-color: #FFD0FF;}
-
-#album a, #album a:link, #album a:hover, #album a:active { border: 0px; text-decoration: none; }
-
-.calendar {
-font:12px/1.5 trebuchet ms, verdana, arial, helvetica, sans-serif;
-}
-
-.calendarToday {
- background-color: #ecdebd;
-}
-
-.commentposterinfo { 
-  	font: 10px trebuchet ms, arial, verdana, sans-serif;
-	letter-spacing: .09em;
-	text-align: left;
-    margin-top: 0px;
-}

Added: templates/trunk/bubble-blue/searchresults.template
===================================================================
--- templates/trunk/bubble-blue/searchresults.template	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/bubble-blue/searchresults.template	2005-02-24 01:56:18 UTC (rev 1188)
@@ -0,0 +1,15 @@
+{include file="$blogtemplate/header.template"}
+   <h2>{$locale->tr("search_results")}</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>
+      <p>
+      {$article->getText()|strip_tags|truncate:300:"...":false}
+      </p>
+     </div>
+     <br/>
+    {/foreach}
+   </p> 
+{include file="$blogtemplate/footer.template"}

Added: templates/trunk/bubble-blue/style.css
===================================================================
--- templates/trunk/bubble-blue/style.css	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/bubble-blue/style.css	2005-02-24 01:56:18 UTC (rev 1188)
@@ -0,0 +1,245 @@
+body {
+	margin:10px 0px; 
+	padding:0px;
+	text-align:center;
+	font:12px arial, times new roman, lucida sans unicode, sans-serif;
+	color:#333;
+	background:#fff url("bk31.gif") fixed;
+	}
+
+h1 {
+	font:bold italic 20px times new roman, lucida sans unicode, sans-serif;
+	margin-top:20px;
+	background: transparent;
+	}
+
+h2 {
+	color:#FFC0C0;
+	font:bold 15px times new roman, times, sans-serif;
+	margin-top: 15px;
+	margin-bottom: 2px;
+	background-color: #FFA0A0;
+	}
+h3 {
+	color:#666;
+	font: bold 13px/18px lucida sans unicode, times new roman, times, sans-serif;
+	margin-top: 15px;
+	margin-bottom: 2px;
+	background-color: #A0A0FF;
+    border: 1px solid #666;
+    border-width: 0px 0px 1px 0px;
+	}
+
+h4 {	background-color: #FFFFA0;
+	font: 12px times new roman, arial, sans-serif;
+	letter-spacing: 0.09em;
+	text-transform: uppercase;
+	margin: 0px;
+	padding: 0px;
+	}
+
+.date {
+	font: 10px verdana, arial, helvetica, sans-serif;
+	letter-spacing: 0.09em;
+	}
+
+.footer {
+	font:10px verdana, arial, helvetica, sans-serif;
+	color: #666;
+	background: transparent;
+	text-align: right;
+	}
+
+.Upgrade {
+	display: none;
+	font-weight: bold;
+      }
+
+p {
+	line-height:1.8;
+	margin:10px 0px;
+	}
+
+ol, ul {    
+	margin-top:0;
+	margin-bottom:10px;
+	line-height:1.8;
+	}
+
+#Container {
+	width:850px;
+	margin:0px auto;
+	text-align:left;
+	padding:0px;
+	border: 1px solid #ccc;
+	background:#fff url("bk31b.gif");
+	color: #333;
+	}
+
+#Main {
+	width:808px;
+	float: left;
+	margin-right: 10px;
+	margin-left: 10px;
+	text-align:center;
+	padding:0px;
+	border: 1px solid #ccc;
+	background:#fff url("bk31b.gif");
+	color: #333;
+	}
+	
+#Resource-Container {
+	width:850px;
+	margin:0px auto;
+	text-align:left;
+	padding:0px;
+	border: 1px solid #ccc;
+	background-color:#fff;
+	color: #333;
+	}	
+	
+#Resource-Container a:link {
+ text-decoration: none;
+
+}
+	
+	
+#Resource-Main {
+	width:850px;
+	padding:0px;
+	border-top: 1px solid #ccc;
+	background-color:#fff;
+	color: #333;
+	text-decoration: none;
+	}
+	
+#Resource-Desc {
+    padding: 10px;
+    text-decoration: none;
+}
+
+#Resource-Desc a:link, 
+#Resource-Desc a,
+#Resource-Desc a:href
+#Resource-Desc a:hover {
+ text-decoration: none;
+ border: 0px;
+}
+	
+
+#Container>#Main {margin-left: 20px;}
+
+#Top {    background:#7F7FFF url('../imgs/plog_top.gif') no-repeat;
+height: auto;
+width: auto;
+	text-align:right;
+	padding:10px;
+	border-bottom: 0px;
+	border-right: 0px;
+	color: #333;
+	/*  background:#ddd; */
+	}
+
+#Topmenu {
+	text-align:center;
+	padding:5px 10px;
+	border-top:1px dashed #ccc;
+	border-bottom: 0px;
+	background:#fff url("bk31b.gif");
+	font:12px verdana, arial, helvetica, sans-serif;
+	color:#333;
+	text-transform: uppercase;
+	}
+
+#Content {
+	width: 485px;
+	float: left;
+	text-align:left;
+	margin:0px;
+	padding:10px;
+	border-right: 1px solid #ccc;
+	border-left: 1px solid #ccc;
+	color: #333;
+background:#fff url("bk31b.gif");
+	/* background-color:#fff; */
+	}
+
+#Sidebar-l {
+	width: 130px;
+	float: left;
+	font:12px/1.5 trebuchet ms, verdana, arial, helvetica, sans-serif;
+	color:#666;
+	text-align:left;
+	padding:10px;
+background:#fff url("bk31b.gif");
+	/* background-color:#fff; */
+	}
+
+#Sidebar-r {
+	width: 130px;
+	float: left;
+	font:12px/1.5 trebuchet ms, verdana, arial, helvetica, sans-serif;
+	color:#666;
+	text-align:left;
+	padding:10px;
+background:#fff url("bk31b.gif");
+	/* background-color:#fff; */
+	}
+
+.Sidetitle {
+	text-align: center;
+	border-top: 1px solid #ccc;
+	border-bottom: 1px solid #ccc;
+	color: #333;
+	background: #eee;
+    text-transform: uppercase;
+	}
+
+#Bottommenu {
+	text-align:center;
+	padding:10px 5px;
+	border-top:0px;
+	border-bottom:1px dashed #ccc;
+	background:#fff url("bk31b.gif");
+	font:10px verdana, arial, helvetica, sans-serif;
+	color:#333;
+	text-transform: uppercase;
+	}
+
+#Bottom {
+	text-align:center; 
+	padding:10px;
+	border-top: 0px;
+background:#fff url("bk31b.gif");
+	/* background-color:#d0d0FF; */
+	font:10px verdana, arial, helvetica, sans-serif;
+	color:#333;
+	text-transform: uppercase;
+	}
+
+a {     font:11px verdana, arial, helvetica, sans-serif;
+	color:#666;
+	text-decoration:none;
+	background-color: #FFD0D0;
+	}
+
+a:link{color: #666; border-bottom: 1px dashed #666; background-color: #FFD0D0;}
+a:visited {color: #666; border-bottom: 1px dashed #666; background-color: #D0FFD0;}
+a:hover {color: #666; border-bottom: 1px solid #666; background-color: #FFD0FF;}
+
+#album a, #album a:link, #album a:hover, #album a:active { border: 0px; text-decoration: none; }
+
+.calendar {
+font:12px/1.5 trebuchet ms, verdana, arial, helvetica, sans-serif;
+}
+
+.calendarToday {
+ background-color: #ecdebd;
+}
+
+.commentposterinfo { 
+  	font: 10px trebuchet ms, arial, verdana, sans-serif;
+	letter-spacing: .09em;
+	text-align: left;
+    margin-top: 0px;
+}

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


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

Deleted: templates/trunk/standard_happy/linktracker.template
===================================================================
--- templates/trunk/standard_happy/linktracker.template	2005-02-24 01:54:22 UTC (rev 1187)
+++ templates/trunk/standard_happy/linktracker.template	2005-02-24 01:56:18 UTC (rev 1188)
@@ -1,13 +0,0 @@
-		{include file="standard_happy/header.template"}
- 
- <h2>{$locale->tr("link_tracker_results")}</h2>
- <div>
- 		{foreach from=$links item=link}
- 	<ul>
- 	<li>
-  	<a target="_blank" href="{$link->getUrl()}">{$link->getUrl()}</a></li>
-  	</ul>
- 		{/foreach}
-</div>
-
-		{include file="standard_happy/footer.template"}




More information about the pLog-svn mailing list