View Form2Content Image Gallery with YOOtheme's UIkit
<div class="uk-panel uk-panel-box motor-slideshow" data-uk-slideshow="{ldelim}autoplay: true{rdelim}"> | |
<ul class="slideshow uk-slideshow"> | |
{foreach from=$IMAGE_GALLERY_IMAGES item=IMAGE} | |
<li> | |
<a class="uk-overlay uk-overlay-hover" data-uk-lightbox="{ldelim}group:'motorfiets'{rdelim}" href="{$IMAGE_GALLERY_URL_RELATIVE}/{$IMAGE.FILENAME}"> | |
<img src="{$IMAGE_GALLERY_URL_RELATIVE}/{$IMAGE.FILENAME}" /> | |
<div class="uk-overlay-panel uk-overlay-icon uk-overlay-background uk-overlay-fade"></div> | |
</a> | |
</li> | |
{/foreach} |
View F2C-KML-Feed-Placemarker-Smarty-template
{* This is a SMARTY placemarker template for the Form2Content KML extension. It is an example which I have used for a project and shows how you can use the F2C fields (data) within a custom placemarker.*} | |
{*text between these tags won't be rendered into your placemarker*} | |
{if $GEOCODER_LAT} | |
<Placemark> | |
{*I use the _RAW template parameter to show HTML as is*} | |
<name>{$JOOMLA_TITLE_RAW}</name> | |
<description><![CDATA[ |
View if-in-array-content
<!-- F2C multi-select field includes 3 checkboxes for 3 options (ANVR/SGR/Calamiteitenfonds) --> | |
<!-- F2C multi-select field name = MEMBERSHIP --> | |
{if in_array('ANVR', $MEMBERSHIP_VALUES)} | |
<img src="images/logo_anvr.png"> | |
{/if} | |
{if in_array('SGR', $MEMBERSHIP_VALUES)} | |
<img src="images/logo_sgr.png"> | |
{/if} | |
{if in_array('Calamiteitenfonds', $MEMBERSHIP_VALUES)} | |
<img src="images/logo_calamiteitenfonds.png"> |
View F2C-Gallery-field-first-image
<!--F2C Gallery field name = GALLERY --> | |
<!--install the FREE Form2Content SEF url plugin!! --> | |
{if $GALLERY_IMAGES[0].FILENAME} | |
<a class="" href="{$JOOMLA_ARTICLE_LINK_SEF}" target="_parent"> | |
<img src="{$GALLERY_URL_ABSOLUTE}thumbs/{$GALLERY_IMAGES[0].FILENAME}" title="{$JOOMLA_TITLE}"> | |
</a> | |
{/if} |