frontend.php
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php if($settings->layout == 'collage') : ?>
<div class="fl-mosaicflow">
<div class="fl-mosaicflow-content">
<?php foreach($module->get_photos() as $photo) : ?>
<div class="fl-mosaicflow-item">
<?php
FLBuilder::render_module_html('photo', array(
'crop' => false,
'link_target' => '_self',
'link_type' => $settings->click_action == 'none' ? '' : 'url',
'link_url' => $settings->click_action == 'none' ? '' : $photo->link,
'photo' => $photo,
'photo_src' => $photo->src,
'show_caption' => $settings->show_captions
));
?>
</div>
<?php endforeach; ?>
</div>
<div class="fl-clear"></div>
</div>
<?php else : ?>
<div class="fl-gallery">
<?php foreach($module->get_photos() as $photo) : ?>
<div class="fl-gallery-item">
<?php
FLBuilder::render_module_html('photo', array(
'crop' => false,
'link_target' => '_self',
'link_type' => $settings->click_action == 'none' ? '' : 'url',
'link_url' => $settings->click_action == 'none' ? '' : $photo->link,
'photo' => $photo,
'photo_src' => $photo->src,
'show_caption' => $settings->show_captions
));
?>
</div>
<?php endforeach; ?>
</div>
<?php endif; ?>