pile/www/_templates/front_doc_overview.php

30 lines
1,000 B
PHP
Raw Normal View History

2017-02-04 22:10:59 +01:00
<div class="text document">
<h1><?= $doc["Title"] ?></h1>
2017-03-08 10:10:23 +01:00
<?php if (!empty($doc["Author"])): ?>
2017-02-04 22:10:59 +01:00
<h2><?= $doc["Author"] ?></h2>
2017-03-08 10:10:23 +01:00
<?php endif; ?>
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-03-08 10:10:23 +01:00
<?php if (!empty($doc["tags"])): ?>
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>
2017-03-08 10:10:23 +01:00
<?php endif; ?>
<?php if (!empty($doc["Description"])): ?>
<p class="doc-description"><span class="doc-description-intro"><?= empty($doc["URL"]) ? "Content" : "Description" ?>: </span><?= $doc["Description"] ?></p>
2017-03-08 10:10:23 +01:00
<?php endif; ?>
2018-07-31 15:45:54 +02:00
<?php if (!empty($doc["URL"])): ?>
2017-03-07 21:13:47 +01:00
<div class="doc-link"><span class="doc-link-intro">Access file at: </span><a href="<?= $doc["URL"] ?>"><?= urldecode($doc["URL"]) ?></a></div>
2018-07-31 15:45:54 +02:00
<?php endif; ?>
2017-03-07 09:38:47 +01:00
</div>