Live demo
Client Testimonials
-
Brilliant, thank you!
Bacon ipsum landjaeger meatball hock ball tip turducken pork loin. Ball tip brisket tenderloin cupim pastrami. Strip steak shoulder venison, pig tri-tip sirloin swine tenderloin ground round...
-
Awesome
Bacon ipsum landjaeger meatball chuck cupim pancetta andouille ham hock ball tip turducken pork loin. Ball tip brisket tenderloin cupim pastrami shoulder leberkas beef salami bresaola. Strip steak...
-
Great service
Bacon ipsum dolor amet meatball ground round tongue, burgdoggen venison kevin pig pork frankfurter corned beef cow tri-tip. Beef ribs jowl tongue sausage swine. Short ribs tail frankfurter hamburger...
Markup
<?php
/**
* @package Joomla.Site
* @subpackage mod_articles_category
* @Author web-eau.net
* @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
?>
<h2 class="display-4 text-center py-5">Client Testimonials</h2>
<ul class="row category-module<?php echo $moduleclass_sfx; ?>">
<?php foreach ($list as $item) : ?>
<li class="col-4">
<?php if ($params->get('link_titles') == 1) : ?>
<h3><a class="list-group-item-action mod-articles-category-title <?php echo $item->active; ?>" href="/<?php echo $item->link; ?>"><?php echo $item->title; ?></a></h3>
<?php else : ?>
<h3><?php echo $item->title; ?></h3>
<?php endif; ?>
<div class="card-body">
<blockquote class="blockquote mod-articles-category-introtext">
<i class="fa fa-quote-left mr-1"></i> <?php echo $item->displayIntrotext; ?>
<footer class="pt-2 blockquote-footer mod-articles-category-writtenby">
<?php echo $item->displayAuthorName; ?>
<?php if ($item->displayDate) : ?>
<cite title="Source Title">
<?php echo $item->displayDate; ?>
</cite>
<?php endif; ?>
</footer>
</blockquote>
<?php if ($params->get('show_readmore')) : ?>
<p class="mod-articles-category-readmore">
<a class="mod-articles-category-title <?php echo $item->active; ?>" href="/<?php echo $item->link; ?>">
<?php if ($item->params->get('access-view') == false) : ?>
<?php echo JText::_('MOD_ARTICLES_CATEGORY_REGISTER_TO_READ_MORE'); ?>
<?php elseif ($readmore = $item->alternative_readmore) : ?>
<?php echo $readmore; ?>
<?php echo JHtml::_('string.truncate', $item->title, $params->get('readmore_limit')); ?>
<?php elseif ($params->get('show_readmore_title', 0) == 0) : ?>
<?php echo JText::sprintf('MOD_ARTICLES_CATEGORY_READ_MORE_TITLE'); ?>
<?php else : ?>
<?php echo JText::_('MOD_ARTICLES_CATEGORY_READ_MORE'); ?>
<?php echo JHtml::_('string.truncate', $item->title, $params->get('readmore_limit')); ?>
<?php endif; ?>
</a>
</p>
<?php endif; ?>
</div>
</li>
<?php endforeach; ?>
</ul>
(sdc override-client-testimonials.zip)