dbd3017f372b7b4c479a8ab53597d767083cb744
[mdref/mdref] / views / index.phtml
1 <h1>mdref</h1>
2
3 <?php if (isset($exception)) : ?>
4 <?=\mdref\ExceptionHandler::html($exception, ["h2"], ["p"], ["pre", "style='overflow-x:scroll'"]); ?>
5 <?php else : ?>
6 <?php if (isset($listing) && count($listing)) : ?>
7 <h2>Available References</h2>
8 <?php foreach ($listing as $entry) : ?>
9 <h3><a href="<?=$entry->formatUrl()?>"><?=$entry->formatLink()?></a></h3>
10 <?php $entry->recurse($refs, "/*.md", function($entry, $pattern, callable $recursor) { ?>
11 <ul>
12 <li><p><a href="<?=$entry->formatUrl()?>"><?=$entry->formatLink()?></a></p>
13 <?=$entry->readDescription()?>
14 <?php $recursor($entry, "/[A-Z]*.md") ?>
15 </li>
16 </ul>
17 <?php }); ?>
18 <?php endforeach; ?>
19 <?php endif; ?>
20 <?php endif; ?>