12 lines
290 B
PHP
12 lines
290 B
PHP
|
<article class="<?= $className ?>">
|
||
|
<a href="<?= $link ?>"><?= $picture ?></a>
|
||
|
<div class="name">
|
||
|
<a href="<?= $link ?>">
|
||
|
<?= array_shift($titles) ?>
|
||
|
<?php foreach ($titles as $title): ?>
|
||
|
<br />
|
||
|
<small><?= $title ?></small>
|
||
|
<?php endforeach ?>
|
||
|
</a>
|
||
|
</div>
|
||
|
</article>
|