Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /var/www/rabbithabit.com/public_html/application/modules/blog/views/1/ |
Upload File : |
<!-- Promo #2--> <section class="container" style="padding-top: 20px;"> <h3 class="text-center pb-2"><?= ucwords(lang('article')); ?></h3> <div class="row justify-content-center"> <?php foreach ($blogs as $blog) : ?> <div class="col-sm-4" style="padding-bottom: 10px;"> <article class="row"> <div class="col-md-12 blog-post"> <a href="<?= base_url() . 'blog/' . strtolower($blog->alias); ?>"><img src="<?= base_url() . 'uploads/blog/' . $blog->image1; ?>"></a> <h3 class="post-title" style="padding-top: 10px;"><a style="font-size:18px; text-align: left;" href="<?= base_url() . 'blog/' . strtolower($blog->alias); ?>"><?= $blog->blog; ?></a></h3> <p class="small"> <?php //get publish date, and change to dd-mm--yy format $publish_date = date('d M Y', strtotime($blog->publish_date)); echo $publish_date; ?> </p> <?php $output = strlen($blog->description) > 200 ? substr($blog->description,0,200)."..." : $blog->description; echo ucfirst($output); ?> <br> <p><a style="text-decoration: none;" href="<?= base_url() . 'blog/' . strtolower($blog->alias); ?>" class='text-medium'><?= ucwords(lang('readmore')); ?></a></p> </div> </article> </div> <?php endforeach; ?> </div> </section>