2017-02-04 22:10:59 +01:00
|
|
|
<div class="text document">
|
|
|
|
<h1><?= $doc["Title"] ?></h1>
|
|
|
|
<h2><?= $doc["Author"] ?></h2>
|
2017-03-07 09:38:47 +01:00
|
|
|
<?php if (!empty($doc["Published"])): ?>
|
2017-02-04 22:10:59 +01:00
|
|
|
<h3>Published: <?= $doc["Published"] ?></h3>
|
2017-03-07 09:38:47 +01:00
|
|
|
<?php endif; ?>
|
2017-02-04 22:10:59 +01:00
|
|
|
<h3 class="doc-taglist">Tags:
|
|
|
|
<?
|
2017-03-07 09:38:47 +01:00
|
|
|
foreach($doc["tags"] as $tag){
|
|
|
|
echo '<li><a href="?tag=' . $tag["Name"] . "\">" . $tag["Name"] . "</a></li>";
|
2017-02-04 22:10:59 +01:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
</h3>
|
|
|
|
<p class="doc-description"><span class="doc-description-intro">Description: </span><?= $doc["Description"] ?></p>
|
|
|
|
<div class="doc-link"><span class="doc-link-intro">Access file at: </span><a href="<?= $doc["URL"] ?>"><?= $doc["URL"] ?></a></div>
|
2017-03-07 09:38:47 +01:00
|
|
|
</div>
|