mirror of
https://github.com/standardebooks/web.git
synced 2025-07-15 19:06:49 -04:00
Adjust nofollow attribute
This commit is contained in:
parent
351713f58e
commit
e11f2ad6b1
5 changed files with 55 additions and 38 deletions
|
@ -18,11 +18,19 @@
|
|||
<? foreach($collections as $collection){ ?>
|
||||
<tr>
|
||||
<td class="row-header"><a href="<?= $collection->Url ?>"><?= Formatter::EscapeHtml($collection->Label) ?></a></td>
|
||||
<td class="number"><?= Formatter::EscapeHtml(number_format($collection->EbookCount)) ?></td>
|
||||
<td class="number"><?= Formatter::EscapeHtml($collection->UpdatedString) ?></td>
|
||||
<td class="number">
|
||||
<?= Formatter::EscapeHtml(number_format($collection->EbookCount)) ?>
|
||||
</td>
|
||||
<td class="number">
|
||||
<?= Formatter::EscapeHtml($collection->UpdatedString) ?>
|
||||
</td>
|
||||
<? foreach($collection->ZipFiles as $item){ ?>
|
||||
<td class="download"><a href="<?= $item->Url ?>"><?= $item->Type ?></a></td>
|
||||
<td>(<?= Formatter::EscapeHtml($item->Size) ?>)</td>
|
||||
<td class="download">
|
||||
<a href="<?= $item->Url ?>"><?= $item->Type ?></a>
|
||||
</td>
|
||||
<td>
|
||||
(<?= Formatter::EscapeHtml($item->Size) ?>)
|
||||
</td>
|
||||
<? } ?>
|
||||
</tr>
|
||||
<? } ?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue