File "frontend.php"

Full Path: /www/wwwroot/shphe-en.com/wp-content/plugins/bb-plugin/modules/callout/includes/frontend.php
File size: 631 bytes
MIME-type: --
Charset: utf-8

<div class="<?php echo $module->get_classname(); ?>">
	<?php 
	
	// Image left
	$module->render_image('left'); 
	
	?>
	<div class="fl-callout-content">
		<?php 
		
		// Image above title
		$module->render_image('above-title'); 
		
		// Title
		$module->render_title();
		
		// Image below title
		$module->render_image('below-title');
		
		?>
		<div class="fl-callout-text-wrap">
			<?php 
			
			// Text 
			$module->render_text();
			
			// Link CTA
			$module->render_link();
			
			// Button CTA 
			$module->render_button();
			
			?>
		</div> 
	</div> 
	<?php 
	
	// Image right
	$module->render_image('right'); 
	
	?>
</div>