PATH:
home
/
letacommog
/
entrepro
/
wp-content
/
plugins
/
content-egg
/
application
/
modules
/
GoogleImages
/
templates
<?php /* Name: Simple */ __('Simple', 'content-egg'); ?> <?php \wp_enqueue_style('egg-bootstrap'); ?> <div class="egg-container egg-image"> <?php if ($title): ?> <h3><?php echo esc_html($title); ?></h3> <?php endif; ?> <div class="row"> <?php foreach ($items as $item): ?> <div class="col-md-12" style="padding-bottom: 20px;"> <img src="<?php echo $item['img']; ?>"<?php if (!empty($item['keyword'])): ?> alt="<?php echo esc_attr($item['keyword']); ?>" <?php endif; ?>class="img-thumbnail" /> <div class="text-center"> <p class="small"><?php printf(__('Source: %s', 'content-egg'), esc_attr($item['extra']['source'])); ?></p> <h4><?php echo esc_html($item['title']); ?></h4> <p><?php echo $item['description']; ?></p> </div> </div> <?php endforeach; ?> </div> </div>
[+]
..
[-] data_justified_gallery.php
[edit]
[-] data_simple.php
[edit]
[-] data_image.php
[edit]