Server IP : 192.185.129.71 / Your IP : 18.117.165.239 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/site/views/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include ('header.php'); ?> <section id="awards"> <div class="pt-60 pb-80 "> <div class="section-title text-center"> <div class="row"> <div class="text-center col-sm-8 col-xs-8 col-xs-offset-2 col-sm-offset-2 wow fadeInUp" data-wow-duration="1200ms" data-wow-delay="300ms" style="visibility: visible; animation-duration: 1200ms; animation-delay: 300ms; animation-name: fadeInUp;"> <h3 class="text-uppercase mt-0"> Stories of Change </h3> <div class="title-icon"> <i class="flaticon-charity-hand-holding-a-heart"></i> </div> <p>We all tell ourselves stories about ourselves and what we can do. If you want to change your life, first you need to change your limiting story...</p> </div> </div> </div> <div class="container"> <div class="col-md-12 mb-25"> <?php $i=1; foreach ($story as $row) { ?> <div class="storyind_div col-lg-4 col-md-4 col-sm-4 col-xs-12"> <div class="storyind"> <a href="<?php echo base_url()."changelives/story/".$row['s_id'];?>"> <div class="hovereffect"> <!-- <div class="cat"> staff pick </div> --!> <img src="<?php echo base_url()."uploads/story/tab/".$row['s_id'].".jpg";?>" class="img-responsive deskhght"> <div class="overlay"> <h3> <?php echo $row['heading'];?> </h3> <p class="info"><?php if(strlen($row['description'])>100){ $stringCut = substr($row['description'], 0, 100); echo $stringCut; if(strlen($row['description'])>100){echo "...";} }else{ echo $row['description']; } ?></p> </div> </div> </a> </div> </div> <?php $i++; } ?> </div> </div> </div> </div> </section> <?php include ('footer.php'); ?>