示例#1
0
<?php

/* ==== TEMPLATE ============================================= */
if (empty($boxes)) {
    return;
}
?>
<div class="link-boxes number-<?php 
echo sizeof($boxes);
?>
 cf">
	<?php 
foreach ($boxes as $box) {
    $target = $box['link']['target'] ? 'target="_blank"' : '';
    $title = $box['link']['title'] ? $box['link']['title'] : '';
    $image = !empty($box['image']) ? getMediaFromID($box['image'], 'image') : '';
    ?>
<div class="link-box">
		<a href="<?php 
    echo $box['link']['url'];
    ?>
" <?php 
    echo $target;
    ?>
>
			<span class="image">
				<?php 
    echo $image;
    ?>
			</span>
			<span class="title"><?php 
示例#2
0
		<a href="<?php 
    echo $box['link']['url'];
    ?>
" <?php 
    echo $target;
    ?>
 <?php 
    echo $title;
    ?>
>
			<span class="icon">
				<?php 
    if (!empty($box['icon_type']) && $box['icon_type'] === 'svg') {
        ?>
					<span class="image-container"><?php 
        echo getMediaFromID($box['svg'], 'image');
        ?>
</span>
				<?php 
    } else {
        if (!empty($box['icon'])) {
            ?>
					<i class="fa fa-<?php 
            echo $box['icon'];
            ?>
"></i>
				<?php 
        }
    }
    ?>
			</span>