highlight selected tag
[grauphel.git] / templates / gui-note.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 <script type="text/javascript" src="<?php p(OCP\Util::linkTo('grauphel','js/grauphel.js')); ?>"></script>
7
8 <div id="app-content" class="content">
9  <h1><?php echo ($_['note']->title); ?></h1>
10  <p class="muted">
11   Last modified:
12   <?php p(\OCP\Util::formatDate(strtotime($_['note']->{'last-change-date'}))); ?>
13  </p>
14  <div class="note-content">
15   <?php echo $_['note-content']; ?>
16  </div>
17 </div>