Your IP : 216.73.216.193


Current Path : /home/poneycluc/www/plugins/system/t4/themes/base/html/com_content/author/
Upload File :
Current File : /home/poneycluc/www/plugins/system/t4/themes/base/html/com_content/author/list_items.php

<?php

use Joomla\CMS\Layout\LayoutHelper;

$col = floor(12/$this->params->get('num_author_col',3));

?>
<div class="row author-lists items-row">
	<?php foreach ($this->authors as $i => $item): ?>
		<div class="col-12 col-md-6 col-lg-<?php echo $col;?>">
			<div class="author">
			<?php 
				$this->author = $item;
				echo LayoutHelper::render('t4.content.author_info', ["author"=> $this->author,'link'=>true, 'class'=> "author-block-list"] , T4PATH . '/html/layouts');
			 ?>	
		</div>
	</div>	
	<?php endforeach; ?>
</div>