59 lines
1.5 KiB
PHP
59 lines
1.5 KiB
PHP
<?php
|
|
// Prevent direct access to file
|
|
defined(security_key) or exit;
|
|
|
|
|
|
$view = template_header($about_text,'');
|
|
|
|
$view .= '
|
|
<!-- Hero Section -->
|
|
<section class="hero" style="background-image:url('.base_url.featured_about_image.');">
|
|
<div class="hero-content">
|
|
<h1>'.$h2_about_1.'</h1>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="content-section">
|
|
<!-- First Text-Image Block -->
|
|
<div class="text-image-block layout-1">
|
|
<div class="text-content">
|
|
<h2>'.$about_header_1.'</h2>
|
|
<div class="image-container">
|
|
<img src="'.base_url.about_image_1.'" alt="">
|
|
</div>
|
|
<p>'.$about_1_p.'</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Second Text-Image Block -->
|
|
<div class="text-image-block layout-2">
|
|
<div class="text-content">
|
|
<h2>'.$about_header_2.'</h2>
|
|
<div class="image-container">
|
|
<img src="'.base_url.about_image_2.'" alt="">
|
|
</div>
|
|
<p>'.$about_2_p.'</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Third Text-Image Block -->
|
|
<div class="text-image-block layout-3">
|
|
<div class="text-content">
|
|
<h2>'.$about_header_3.'</h2>
|
|
<div class="image-container">
|
|
<img src="'.base_url.about_image_3.'" alt="">
|
|
</div>
|
|
<p>'.$about_3_p.'</p>
|
|
<p>
|
|
<h4>
|
|
<a class="about_link" href="'.url('index.php?page=about_morval').'">'.$about_morval_text.' ></a>
|
|
</h4>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
';
|
|
|
|
$view .= template_footer();
|
|
|
|
echo $view; |