PATH:
home
/
lab2454c
/
keebchat.com
/
themes
/
default
/
apps
/
news
<div class="timeline-container" data-app="trending"> <div class="timeline-header" data-el="tl-header"> <div class="lp"> <div class="nav-link-holder"> <a href="<?php echo cl_link('trending'); ?>" data-spa="true"> <?php echo cl_translate("Latest News"); ?> </a> </div> </div> <div class="cp"> <a href="<?php echo cl_link('/'); ?>"> <img src="{%config site_logo%}" alt="Logo"> </a> </div> <div class="rp"> <div class="nav-link-holder"> <span class="go-back" onclick="SMColibri.go_back();"> <?php echo cl_ikon('arrow-left'); ?> </span> </div> </div> </div> <div class="main--trending-hashtags-container"> <?php if (not_empty($cl["news"])): ?> <div class="container text-center"> <?php foreach ($cl["news"]->results as $cl['new']): ?> <div class="card my-4"> <a href="<?php echo($cl['new']->link); ?>" target="_blank"> <img class="card-img-top" src="<?php echo (isset($cl['new']->image_url)) ? $cl['new']->image_url : 'https://chatsier.com/upload/default/news-default.jpg'; ?>" alt="Card image cap"> </a> <div class="card-body"> <h5 class="card-title"><?php echo($cl['new']->title); ?></h5> <p class="card-text"> <?php echo($cl['new']->description); ?> </p> <a href="<?php echo($cl['new']->link); ?>" class="btn btn-primary" target="_blank">Details</a> </div> </div> <?php endforeach; ?> </div> <!--<div class="load-more">--> <!-- <button class="btn btn-custom main-outline lg" data-an="load-more">--> <!-- <?php echo cl_translate("Show more"); ?>--> <!-- </button>--> <!--</div>--> <?php else: ?> <div class="hashtags-list-placeholder"> <div class="pl-message"> <h4 style=" font-size: 20px; padding: 0; margin: 50px 0 10px 0; line-height: 20px; color: #14171a; font-weight: 700; text-align: center;"> <?php echo cl_translate("No News to display"); ?> </h4> </div> <div class="c2action-single" style="width: 100%; line-height: 0px; text-align: center;"> <a href="<?php echo cl_link('/'); ?>" data-spa="true"> <button class="btn btn-custom main-outline lg"> <?php echo cl_translate("Go to the homepage"); ?> </button> </a> </div> </div> <?php endif; ?> </div> <?php echo cl_template("main/includes/inline_statics/app_statics"); ?> </div>
[+]
..
[-] content.phtml
[edit]