pile/www/_templates/front_doc_overview.php
2017-03-07 21:13:47 +01:00

16 lines
689 B
PHP

<div class="text document">
<h1><?= $doc["Title"] ?></h1>
<h2><?= $doc["Author"] ?></h2>
<?php if (!empty($doc["Published"])): ?>
<h3>Published: <?= $doc["Published"] ?></h3>
<?php endif; ?>
<h3 class="doc-taglist">Tags:
<?
foreach($doc["tags"] as $tag){
echo '<li><a href="?tag=' . $tag["Name"] . "\">" . $tag["Name"] . "</a></li>";
}
?>
</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"] ?>"><?= urldecode($doc["URL"]) ?></a></div>
</div>