summaryrefslogtreecommitdiff
path: root/templates/gui-note.php
blob: 8061a50adc2998be2ee7259842d2520600569eab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<link rel="stylesheet" href="<?php p(OCP\Util::linkTo('grauphel','grauphel.css')); ?>" type="text/css"/>

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

<script type="text/javascript" src="<?php p(OCP\Util::linkTo('grauphel','js/grauphel.js')); ?>"></script>

<div id="app-content" class="content">
 <div id="searchresults" class="hidden"></div>
 <div class="actions">
  <a class="button" href="<?php echo p($_['links']['html']); ?>">HTML</a>
  <a class="button" href="<?php echo p($_['links']['text']); ?>">Text</a>
  <a class="button" href="<?php echo p($_['links']['json']); ?>">JSON</a>
  <a class="button" href="<?php echo p($_['links']['xml']); ?>">XML</a>
 </div>
 <h1><?php echo ($_['note']->title); ?></h1>
 <p class="muted">
  Last modified:
  <?php p(\OCP\Util::formatDate(strtotime($_['note']->{'last-change-date'}))); ?>
 </p>
 <div class="note-content">
  <?php echo $_['note-content']; ?>
 </div>
</div>