8c7eecc2a4f8b0b98613ddc4b251b8b8b0361f43
[grauphel.git] / templates / tag.php
1 <link rel="stylesheet" href="<?php p(OCP\Util::linkTo('grauphel','grauphel.css')); ?>" type="text/css"/>
2
3 <?php /** @var $l OC_L10N */ ?>
4 <?php $_['appNavigation']->printPage(); ?>
5
6 <div id="app-content" class="list">
7   <h1>Notebook: <?php p($_['tag']); ?></h1>
8
9   <table class="table" id="grauphel-notes">
10    <thead>
11     <tr>
12      <th>Title</th>
13      <th>Last change</th>
14     </tr>
15    </thead>
16    <tbody>
17
18     <?php foreach ($_['notes'] as $note) { ?>
19      <tr id="note-<?php p($note['guid']); ?>">
20       <td>
21        <a class="cellclick" href="<?php p(OCP\Util::linkToRoute('grauphel.gui.note', array('guid' => $note['guid']))); ?>"><?php p($note['title']); ?></a>
22       </td>
23       <td>
24       </td>
25      </tr>
26     <?php } ?>
27
28    </tbody>
29   </table>
30 </div>