mention 0.6.0 in changelog
[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  <div id="searchresults" class="hidden"></div>
10  <div class="actions">
11   <a class="button" href="<?php echo p($_['links']['html']); ?>">HTML</a>
12   <a class="button" href="<?php echo p($_['links']['text']); ?>">Text</a>
13   <a class="button" href="<?php echo p($_['links']['json']); ?>">JSON</a>
14   <a class="button" href="<?php echo p($_['links']['xml']); ?>">XML</a>
15  </div>
16  <h1><?php echo ($_['note']->title); ?></h1>
17  <p class="muted">
18   Last modified:
19   <?php p(\OCP\Util::formatDate(strtotime($_['note']->{'last-change-date'}))); ?>
20  </p>
21  <div class="note-content">
22   <?php echo $_['note-content']; ?>
23  </div>
24 </div>