bludit/bl-themes/alternative/php/home.php

71 lines
2.2 KiB
PHP
Raw Normal View History

2018-01-28 20:06:07 +01:00
<!-- Welcome message -->
<header class="welcome bg-light">
<div class="container text-center">
<!-- Site title -->
2018-03-05 23:46:52 +01:00
<h1><?php echo $site->slogan(); ?></h1>
<!-- Site description -->
<?php if ($site->description()): ?>
2018-03-05 23:46:52 +01:00
<p class="lead"><?php echo $site->description(); ?></p>
<?php endif ?>
</div>
</header>
<!-- Print all the content -->
<?php foreach ($content as $page): ?>
2018-01-28 20:06:07 +01:00
<section class="home-page">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
2018-01-28 23:33:50 +01:00
<!-- Load Bludit Plugins: Page Begin -->
<?php Theme::plugins('pageBegin'); ?>
<!-- Page title -->
2018-03-05 23:46:52 +01:00
<a class="text-dark" href="<?php echo $page->permalink(); ?>">
<h2 class="title"><?php echo $page->title(); ?></h2>
2018-01-27 20:34:26 +01:00
</a>
2018-01-28 20:06:07 +01:00
<!-- Page content until the pagebreak -->
<div>
2018-03-05 23:46:52 +01:00
<?php echo $page->contentBreak(); ?>
</div>
<!-- Shows "read more" button if necessary -->
<?php if ($page->readMore()): ?>
2018-03-19 21:55:20 +01:00
<a class="btn btn-primary btn-sm" href="<?php echo $page->permalink(); ?>" role="button"><?php echo $Language->get('Read more'); ?></a>
<?php endif ?>
2018-01-28 23:33:50 +01:00
<!-- Load Bludit Plugins: Page End -->
<?php Theme::plugins('pageEnd'); ?>
</div>
</div>
</div>
</section>
<?php endforeach ?>
<!-- Pagination -->
2018-01-27 20:34:26 +01:00
<?php if (Paginator::amountOfPages()>1): ?>
<nav class="paginator" aria-label="Page navigation">
<ul class="pagination flex-wrap justify-content-center">
2018-01-27 20:34:26 +01:00
<!-- Previous button -->
<li class="page-item <?php if (!Paginator::showPrev()) echo 'disabled' ?>">
2018-03-19 21:55:20 +01:00
<a class="page-link" href="<?php echo Paginator::prevPageUrl() ?>" tabindex="-1"><?php echo $Language->get('Previous'); ?></a>
</li>
2018-01-27 20:34:26 +01:00
<!-- List of pages -->
<?php for ($i = 1; $i <= Paginator::amountOfPages(); $i++): ?>
<li class="page-item <?php if ($i==Paginator::currentPage()) echo 'active' ?>">
<a class="page-link" href="<?php echo Paginator::numberUrl($i) ?>"><?php echo $i ?></a>
</li>
<?php endfor ?>
2018-01-27 20:34:26 +01:00
<!-- Next button -->
<li class="page-item <?php if (!Paginator::showNext()) echo 'disabled' ?>">
2018-03-19 21:55:20 +01:00
<a class="page-link" href="<?php echo Paginator::nextPageUrl() ?>"><?php echo $Language->get('Next'); ?></a>
</li>
2018-01-27 20:34:26 +01:00
</ul>
</nav>
2018-02-24 22:39:39 +01:00
<?php endif ?>