pile/www/_templates/front_doc_overview.php
2017-03-08 10:10:23 +01:00

27 lines
903 B
PHP

<div class="text document">
<h1><?= $doc["Title"] ?></h1>
<?php if (!empty($doc["Author"])): ?>
<h2><?= $doc["Author"] ?></h2>
<?php endif; ?>
<?php if (!empty($doc["Published"])): ?>
<h3>Published: <?= $doc["Published"] ?></h3>
<?php endif; ?>
<?php if (!empty($doc["tags"])): ?>
<h3 class="doc-taglist">Tags:
<?
foreach($doc["tags"] as $tag){
echo '<li><a href="?tag=' . $tag["Name"] . "\">" . $tag["Name"] . "</a></li>";
}
?>
</h3>
<?php endif; ?>
<?php if (!empty($doc["Description"])): ?>
<p class="doc-description"><span class="doc-description-intro">Description: </span><?= $doc["Description"] ?></p>
<?php endif; ?>
<div class="doc-link"><span class="doc-link-intro">Access file at: </span><a href="<?= $doc["URL"] ?>"><?= urldecode($doc["URL"]) ?></a></div>
</div>