42 lines
617 B
PHTML
42 lines
617 B
PHTML
<style>
|
|
#identifiant {
|
|
float:left;
|
|
width:40%;
|
|
}
|
|
#modules {
|
|
float:left;
|
|
width:40%;
|
|
}
|
|
|
|
#listeModules {
|
|
position:absolute;
|
|
width:500px;
|
|
display:none;
|
|
background-color:#FBF7AA;
|
|
border:1px solid #000000;
|
|
z-index:3;
|
|
}
|
|
|
|
#closelisteModules {
|
|
float:right;
|
|
padding:0.4em 1em;
|
|
}
|
|
|
|
#listeModules ul {
|
|
width:100%;
|
|
margin-left:-10px;
|
|
list-style-type:none;
|
|
}
|
|
|
|
#listeModules ul li {
|
|
display:inline;
|
|
float:left;
|
|
width:50%;
|
|
}
|
|
</style>
|
|
|
|
<div id="center">
|
|
<?php foreach ( $this->content as $item ) {?>
|
|
<?=$this->partial('bdf/module-content.phtml', array('titre'=>$item['titre'],'html'=>$item['html']))?>
|
|
<?php }?>
|
|
</div>
|