EstudioJuridicoAlmagro_Web/www/wpv_theme/shortcode_templates/services.php
david f72df580c3 - Importación inicial
- Ticket 1166 -> Orden de los idiomas ES FR EN RU

git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@2 c22fe52d-42d7-ba4f-95f7-33effcf65713
2013-02-27 15:39:05 +00:00

39 lines
1.6 KiB
PHP

[raw]
<div class="services clearfix <?php echo $class?>" style="text-align:<?php echo $text_align?>">
<?php if($fullimage == 'true'): ?>
<?php if($no_button == 'true'): ?>
<h3 style="font-size:<?php echo $title_size?>px;line-height:1em"><?php echo $title ?></h3>
<div class="thumbnail"><?php
if((int)$image_height > 0) {
wpv_lazy_load($icon, '', array('height' => $image_height));
} else {
wpv_lazy_load($icon);
}
?></div>
<?php else: ?>
<a href="<?php echo $button_link?>" class="thumbnail no-lightbox">
<strong class="thumbnail-pad">
<span class="title" style="font-size:<?php echo $title_size?>px;line-height:1.4em"><?php echo $title?></span>
</strong>
<?php
if((int)$image_height > 0) {
wpv_lazy_load($icon, '', array('height' => $image_height));
} else {
wpv_lazy_load($icon);
}
?>
<span class="graphic-label"></span>
</a>
<?php endif ?>
<div class="shadow"></div>
<?php else: ?>
<h3 style="font-size:<?php echo $title_size?>px;line-height:1.4em;<?php echo ($icon != '') ? "background-image:url('$icon');padding-top:".(55 - (int)$title_size).'px;' :'';?><?php echo ($icon=='') ? 'padding-left: 0px;' : ''; ?>" class="title clearfix"><?php echo $title ?></h3>
<?php endif ?>
<div>
<?php echo do_shortcode($content)?>
<?php if($button_text != ''): ?>
<a class="clearboth <?php echo ($no_button != 'true') ? 'button' : 'more-btn' ?>" href="<?php echo $button_link?>"><span><?php echo $button_text?></span></a>
<?php endif ?>
</div>
</div>
[/raw]