]> git.quilime.com - plog.git/commitdiff
Getting log working
authorGabriel Dunne <gdunne@quilime.com>
Tue, 18 Jun 2013 04:17:14 +0000 (21:17 -0700)
committerGabriel Dunne <gdunne@quilime.com>
Tue, 18 Jun 2013 04:17:14 +0000 (21:17 -0700)
css/style.css
templates/entry.html.tpl
templates/log.html.tpl
templates/nav.html.tpl

index a3c74a18839901f3222e6303acd05877d3474301..870db98ba5eac8be0334e0d6e44fbe9adf4cf819 100644 (file)
@@ -255,6 +255,12 @@ table, td, tr {
 .entries.log li {
 height:auto;
   }
+.entries.log .entry {
+  margin-bottom:200px;
+  }  
+.entries.log .entry {
+  
+}
 
 
 .entries.projects ul.tags li {
@@ -340,7 +346,6 @@ height:auto;
 }
 .entries li {
     margin-bottom:4em;
-    text-align:center;
 }
 .entry h2.title {
   font-size:12px;
@@ -378,7 +383,9 @@ ul.entries li a:hover {
   margin-bottom:40px;
   width:120px; }
 .projects li {
-  margin-bottom:2em; }
+  margin-bottom:2em; 
+  text-align:center;
+}
 
 
 
index fe675748e996db1526ca6cb2b0ab6464f9542c43..213ad45a38d085dc5c0cecdcd557ec487fded0a3 100644 (file)
@@ -14,7 +14,7 @@
        <? eval('?>' . $entry->content); ?>
 </div>
 
-<? if (isset($entry->is_single) && $entry->is_single) : ?>
+<? if ((isset($entry->is_single) && $entry->is_single) || $show_metadata) : ?>
 
        <div class="metadata">
 
index ac54b444354bd88aaba352a49aa1f2ee77ef44c6..4412518db0f6bf7aa9ad20661b552d1b57de981e 100644 (file)
     <? $entry = 0; foreach($entries as $entry): ?>
     <div class="entry">
     <?
-        //if (isset($entry->content_short))
-        //$entry->content = $entry->content_short . '<br /><a class="more" href="' . $entry->url . '">more &rarr;</a><br /><br />';
-        $this->include_template('entry.html.tpl', array('entry' => $entry));
+        if (isset($entry->content_short))
+        $entry->content = $entry->content_short . '<br /><a class="more" href="' . $entry->url . '">more &rarr;</a><br /><br />';
+        else
+        $this->include_template('entry.html.tpl', array('entry' => $entry, 'show_metadata' => true));
     ?>
+
     </div>
     <? endforeach; ?>
 
index efd5e156061ec5b68e1691e5a767237b849dc41a..b3253b5faab880f72032cd690f667c8f9238602c 100644 (file)
@@ -5,10 +5,7 @@
     
 
     
-    <? $dirs = get_dirs('', array('recursive'=>0)); ?>
-    <? foreach($dirs as $e) : ?>
-    <li><a href="<?=$e->url?>"><?=$e->title?></a></li>
-    <? endforeach; ?>    
+  
     
 
     <? if (!isset($entry->is_single)) {
         'order_by' => 'alpha',
         'order' => SORT_ASC
         ) ); ?>
+    <? $dirs = get_dirs('', array('recursive'=>0)); ?>
+    <? foreach($dirs as $e) : ?>
+    <li><a href="<?=$e->url?>"><?=$e->title?></a></li>
+    <? endforeach; ?>          
     <? foreach($en as $e) : /*print_r($e);*/ ?>