pile/www/_templates/front_doc_listing.php

20 lines
648 B
PHP
Raw Normal View History

2017-03-07 09:38:47 +01:00
<?php if (isset($tag)): ?>
2018-07-31 15:58:23 +02:00
<div class="text tag-text">
<h1><?= $tag["Name"] ?></h1>
<p class="tag-desc"><?= $tag["Description"] ?></p>
</div>
2017-03-07 09:38:47 +01:00
<?php endif; ?>
2017-02-04 22:10:59 +01:00
2018-07-31 15:58:23 +02:00
<?php foreach ($docs as $doc): ?>
2017-02-04 22:10:59 +01:00
<div class="text doc-item">
<?php if (!empty($doc["URL"])): ?>
<a class="doc-item-link" href="<?= $doc["URL"] ?>">🔗</a>
<?php endif; ?>
2018-07-31 15:58:23 +02:00
<a href="?item=<?= $doc["ID"] ?>">
2017-02-04 22:10:59 +01:00
<div class="doc-item-text">
2018-07-31 15:58:23 +02:00
<h2><?= $doc["Title"] ?></h2>
<h3><?= $doc["Author"] . " " . $doc['date'] ?></h3>
2017-02-04 22:10:59 +01:00
</div>
</a>
</div>
<?php endforeach; ?>