pile/www/_templates/front_doc_listing.php

18 lines
557 B
PHP
Raw Normal View History

2017-03-07 09:38:47 +01:00
<?php if (isset($tag)): ?>
2017-02-04 22:10:59 +01: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
<?php foreach($docs as $doc): ?>
<div class="text doc-item">
<a class="doc-item-link" href="<?= $doc["URL"] ?>">🔗</a>
<a href="?item=<?= $doc["ID"]?>">
<div class="doc-item-text">
<h2><?= $doc["Title"]?></h2>
<h3><?= $doc["Author"] . " " . $doc['date']?></h3>
</div>
</a>
</div>
<?php endforeach; ?>