mirror of
https://github.com/standardebooks/web.git
synced 2025-07-18 20:36:38 -04:00
14 lines
335 B
PHP
14 lines
335 B
PHP
<table class="download-list">
|
|
<thead>
|
|
<tr class="mid-header">
|
|
<th scope="col">Collection</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<? foreach($collections as $collection){ ?>
|
|
<tr>
|
|
<td class="row-header"><a href="<?= $collection->Url ?>"><?= Formatter::ToPlainText($collection->Name) ?></a></td>
|
|
</tr>
|
|
<? } ?>
|
|
</tbody>
|
|
</table>
|