86 lines
3.3 KiB
PHP
Raw Normal View History

2025-01-15 16:57:03 +03:00
<?php
/**
* @var string $resources;
* @var \kernel\CgView $view
*/
2025-01-16 16:14:43 +03:00
$view->setTitle("Старт Bootstrap");
2025-01-15 16:57:03 +03:00
$view->setMeta([
2025-01-16 16:14:43 +03:00
'description' => 'Дефолтная bootstrap тема'
2025-01-15 16:57:03 +03:00
]);
?>
2025-01-16 16:14:43 +03:00
<!-- Page Header-->
<header class="masthead" style="background-image: url('<?= $resources ?>/assets/img/home-bg.jpg')">
<div class="container position-relative px-4 px-lg-5">
<div class="row gx-4 gx-lg-5 justify-content-center">
<div class="col-md-10 col-lg-8 col-xl-7">
<div class="site-heading">
<h1>Clean Blog</h1>
<span class="subheading">A Blog Theme by Start Bootstrap</span>
</div>
</div>
</div>
2025-01-15 16:57:03 +03:00
</div>
2025-01-16 16:14:43 +03:00
</header>
<!-- Main Content-->
<div class="container px-4 px-lg-5">
<div class="row gx-4 gx-lg-5 justify-content-center">
<div class="col-md-10 col-lg-8 col-xl-7">
<!-- Post preview-->
<div class="post-preview">
<a href="#!">
<h2 class="post-title">Man must explore, and this is exploration at its greatest</h2>
<h3 class="post-subtitle">Problems look mighty small from 150 miles up</h3>
</a>
<p class="post-meta">
Posted by
<a href="#!">Start Bootstrap</a>
on September 24, 2023
</p>
2025-01-15 16:57:03 +03:00
</div>
2025-01-16 16:14:43 +03:00
<!-- Divider-->
<hr class="my-4" />
<!-- Post preview-->
<div class="post-preview">
<a href="#!"><h2 class="post-title">I believe every human has a finite number of heartbeats. I don't intend to waste any of mine.</h2></a>
<p class="post-meta">
Posted by
<a href="#!">Start Bootstrap</a>
on September 18, 2023
</p>
2025-01-15 16:57:03 +03:00
</div>
2025-01-16 16:14:43 +03:00
<!-- Divider-->
<hr class="my-4" />
<!-- Post preview-->
<div class="post-preview">
<a href="#!">
<h2 class="post-title">Science has not yet mastered prophecy</h2>
<h3 class="post-subtitle">We predict too much for the next year and yet far too little for the next ten.</h3>
</a>
<p class="post-meta">
Posted by
<a href="#!">Start Bootstrap</a>
on August 24, 2023
</p>
2025-01-15 16:57:03 +03:00
</div>
2025-01-16 16:14:43 +03:00
<!-- Divider-->
<hr class="my-4" />
<!-- Post preview-->
<div class="post-preview">
<a href="#!">
<h2 class="post-title">Failure is not an option</h2>
<h3 class="post-subtitle">Many say exploration is part of our destiny, but its actually our duty to future generations.</h3>
</a>
<p class="post-meta">
Posted by
<a href="#!">Start Bootstrap</a>
on July 8, 2023
</p>
2025-01-15 16:57:03 +03:00
</div>
2025-01-16 16:14:43 +03:00
<!-- Divider-->
<hr class="my-4" />
<!-- Pager-->
<div class="d-flex justify-content-end mb-4"><a class="btn btn-primary text-uppercase" href="#!">Older Posts </a></div>
</div>
</div>
2025-01-15 16:57:03 +03:00
</div>