aboutsummaryrefslogtreecommitdiff
path: root/templates/tag.php
blob: 68fa8131ea893ceeaec686bf5b969d020655e920 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<link rel="stylesheet" href="<?php p(OCP\Util::linkTo('grauphel','grauphel.css')); ?>" type="text/css"/>

<?php /** @var $l OC_L10N */ ?>
<?php $_['appNavigation']->printPage(); ?>

<div id="app-content" class="content">
  <h1>Notebook: <?php p($_['tag']); ?></h1>
  <p class="error">
     Work in progress: You can't do anything here.
  </p>
  <ul>
    <?php foreach ($_['notes'] as $note) { ?>
      <li data-id="<?php p($note['guid']); ?>"><a href="#"><?php p($note['title']); ?></a></li>
    <?php } ?>
  </ul>
</div>