* \n to PHP_EOL * add phpdoc for autocomplete * try to unify indentations * stop mixing quotation marks if possible
21 lines
414 B
PHP
21 lines
414 B
PHP
<?php
|
|
namespace Aowow\Template;
|
|
|
|
use \Aowow\Lang;
|
|
|
|
/** @var PageTemplate $this */
|
|
?>
|
|
|
|
<tr><th id="infobox-series"><?=$listTitle ?: Lang::achievement('series'); ?></th></tr>
|
|
<tr><td>
|
|
<div class="infobox-spacer"></div>
|
|
<table class="series">
|
|
|
|
<?php
|
|
foreach ($list as $idx => $itr):
|
|
echo $this->renderSeriesItem($idx, $itr, 12);
|
|
endforeach;
|
|
?>
|
|
|
|
</table>
|
|
</td></tr>
|