Link to maintainership/funding post
[grauphel.git] / templates / tag.php
index a8752a44a8a76df57651cd72ed0f4426ee552ad0..4c20378b8ff7d9bee5333aa52d745ce1c617b066 100644 (file)
@@ -1,16 +1,21 @@
-<link rel="stylesheet" href="<?php p(OCP\Util::linkTo('grauphel','grauphel.css')); ?>" type="text/css"/>
+<?php style('grauphel', 'grauphel'); ?>
 
 <?php /** @var $l OC_L10N */ ?>
 <?php $_['appNavigation']->printPage(); ?>
 
 <div id="app-content" class="list">
+  <div id="searchresults" class="hidden"></div>
   <h1>Notebook: <?php p($_['tag']); ?></h1>
 
   <table class="table" id="grauphel-notes">
    <thead>
     <tr>
-     <th id="headerTitle">Title</th>
-     <th>Modified</th>
+     <th id="headerTitle">
+      <a href="<?php p($tagUrl); ?>?sortby=title">Title</a>
+     </th>
+     <th>
+      <a href="<?php p($tagUrl); ?>?sortby=date">Modified</a>
+     </th>
     </tr>
    </thead>
    <tbody>
     <?php foreach ($_['notes'] as $note) { ?>
      <tr id="note-<?php p($note['guid']); ?>">
       <td>
-       <a class="cellclick" href="<?php p(OCP\Util::linkToRoute('grauphel.gui.note', array('guid' => $note['guid']))); ?>"><?php echo ($note['title']); ?></a>
+       <a class="cellclick" href="<?php p($_['urlGen']->linkToRoute('grauphel.gui.note', array('guid' => $note['guid']))); ?>"><?php echo ($note['title']); ?></a>
       </td>
-      <td style="color: <?php echo p($note['dateColor']); ?>">
-       <?php p(\OCP\Util::formatDate(strtotime($note['last-change-date']))); ?>
+      <td style="color: <?php echo p($note['dateColor']); ?>"
+          title="<?php p(date('Y-m-d H:i:s', strtotime($note['last-change-date']))); ?>">
+       <?php p($_['date']->formatDate(strtotime($note['last-change-date']))); ?>
       </td>
      </tr>
     <?php } ?>