1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,12 @@ |
1 |
+ |
|
2 |
+<ul class="cols_<?= $this->perRow ?>"> |
|
3 |
+ <?php foreach ($this->body as $class => $row): ?> |
|
4 |
+ <?php foreach ($row as $col): ?> |
|
5 |
+ <?php if ($col->addImage): ?> |
|
6 |
+ <li class="<?= $class ?> <?= $col->class ?>"> |
|
7 |
+ <?php $this->insert('picture_default', (array) $col->picture); ?> |
|
8 |
+ </li> |
|
9 |
+ <?php endif; ?> |
|
10 |
+ <?php endforeach; ?> |
|
11 |
+ <?php endforeach; ?> |
|
12 |
+</ul> |