aboutsummaryrefslogtreecommitdiff
path: root/templates/tag.php
blob: ea80ed051a1030899f2639d75873894e21eefcbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<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">
  <h1>Notebook: <?php p($_['tag']); ?></h1>
  <ul>
    <?php foreach ($_['notes'] as $note) { ?>
      <li data-id="<?php p($note['guid']); ?>"><a href="#"><?php p($note['title']); ?></a></li>
    <?php } ?>
  </ul>
</div>