Skip to content
Snippets Groups Projects
Commit 60cfd58c authored by pbarroca's avatar pbarroca
Browse files

BibNumérique: affichage spécifique téléphone

parent 9af5c16f
No related merge requests found
<?php echo $this->toolbar($this->categorie->getLibelle(), $this->url(array(), null, true) ,false); ?>
<div class="liste">
<ul>
<?php
foreach($this->albums as $album) {
echo sprintf('<li class="lien">%s</li>',
$this->tagAnchor(
$this->url(array('action' => 'view-album',
'id' => $album->getId())),
$album->getTitre()
));
}
?>
</ul>
</div>
<ul data-role="listview">
<li data-role="list-divider"><?php echo $this->categorie->getLibelle();?></li>
<?php foreach($this->albums as $album) { ?>
<li><?php echo $this->tagAnchor($this->url(array('action' => 'view-album',
'id' => $album->getId())),
$album->getTitre());?></li>
<?php } ?>
</ul>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment