92 lines
4.4 KiB
PHP
92 lines
4.4 KiB
PHP
<?= $this->extend('layouts/homelayout2') ?>
|
|
<?= $this->section('content') ?>
|
|
<div class="content d-flex flex-column flex-column-fluid" id="kt_content">
|
|
<!--begin::Post-->
|
|
<div class="post d-flex flex-column-fluid" id="kt_post">
|
|
<!--begin::Container-->
|
|
<div id="kt_content_container" class="container-xxl">
|
|
<!--begin::Home card-->
|
|
<div class="card">
|
|
<!--begin::Body-->
|
|
<div class="card-body p-lg-20">
|
|
|
|
<!--begin::Section-->
|
|
<div class="mb-17">
|
|
<!--begin::Content-->
|
|
<div class="d-flex flex-stack mb-5">
|
|
<!--begin::Title-->
|
|
<h3 class="text-black">Video Tutorials</h3>
|
|
<!--end::Title-->
|
|
<!--begin::Link-->
|
|
<a href="https://blog.coregrade.com" class="fs-6 fw-bold link-primary">Visit Blog</a>
|
|
<!--end::Link-->
|
|
</div>
|
|
<!--end::Content-->
|
|
<!--begin::Separator-->
|
|
<div class="separator separator-dashed mb-9"></div>
|
|
<!--end::Separator-->
|
|
<!--begin::Row-->
|
|
<div class="row g-10">
|
|
<!--begin::Col-->
|
|
|
|
<?php
|
|
foreach ($blog_post as $bitem) {
|
|
// print_r($bitem);
|
|
?>
|
|
|
|
|
|
|
|
<div class="col-md-4">
|
|
<!--begin::Feature post-->
|
|
<div class="card-xl-stretch me-md-6">
|
|
<!--begin::Image-->
|
|
<a class="d-block bgi-no-repeat bgi-size-cover bgi-position-center card-rounded position-relative min-h-175px mb-5" style="background-image:url('<?=$bitem['image']?>')" data-fslightbox="lightbox-video-tutorials" href="<?= $bitem['link']?>">
|
|
<img src="/tassets/media/svg/misc/video-play.svg" class="position-absolute top-50 start-50 translate-middle" alt="" />
|
|
</a>
|
|
<!--end::Image-->
|
|
<!--begin::Body-->
|
|
<div class="m-0">
|
|
<!--begin::Title-->
|
|
<a href="<?= $bitem['link']?>" class="fs-4 text-dark fw-bolder text-hover-primary text-dark lh-base"><?= $bitem['title'] ?> </a>
|
|
<!--end::Title-->
|
|
<!--begin::Text-->
|
|
<div class="fw-bold fs-5 text-gray-600 text-dark my-4"><?= $bitem['desc']?></div>
|
|
<!--end::Text-->
|
|
<!--begin::Content-->
|
|
<div class="fs-6 fw-bolder">
|
|
<!--begin::Author-->
|
|
<a href="../../demo8/dist/pages/profile/overview.html" class="text-gray-700 text-hover-primary">Jane Miller</a>
|
|
<!--end::Author-->
|
|
<!--begin::Date-->
|
|
<span class="text-muted"><?= $bitem['date'] ?></span>
|
|
<!--end::Date-->
|
|
</div>
|
|
<!--end::Content-->
|
|
</div>
|
|
<!--end::Body-->
|
|
</div>
|
|
<!--end::Feature post-->
|
|
</div>
|
|
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
|
|
</div>
|
|
<!--end::Row-->
|
|
</div>
|
|
<!--end::Section-->
|
|
|
|
|
|
</div>
|
|
<!--end::Body-->
|
|
</div>
|
|
<!--end::Home card-->
|
|
</div>
|
|
<!--end::Container-->
|
|
</div>
|
|
<!--end::Post-->
|
|
</div>
|
|
<?= $this->endSection() ?>
|