refactoaaar
[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 <ul>
11 <?php foreach (new mdref\RefListing($path = $refs->find($baseUrl->mod($entry->formatUrl())), $refs->glob($path, "/*.md")) as $entry) : ?>
12 <li><a href="<?=$entry->formatUrl()?>"><?=$entry->formatLink()?></a><br>
13 <?=$entry->readDescription()?></li>
14 <?php endforeach; ?>
15 </ul>
16 <?php endforeach; ?>
17 <?php endif; ?>
18 <?php endif; ?>