Files
nodejs-website/pages/helpers/banner.php

28 lines
760 B
PHP
Executable File

#!/usr/bin/php
<?php
// Dynamic testing of whether new images around the banner is wanted.
$show_pics = true;
$banner_width = $show_pics ? 6 : 12;
?>
<a href='/about/'>
<?php if ($show_pics) echo '
<div class="row col-3 header center">
<img src="/files/media/icons/home.jpg"
alt="<<banner01.jpg>>" style="width:100%"
>
</div>
';?>
<div class="row col-<?php echo "$banner_width"; ?> header">
<div class="banner-top">Peace</div>
<div class="banner-middle">Love</div>
<div class="banner-bottom">Happiness</div>
</div>
<?php if ($show_pics) echo '
<div class="row col-3 header center">
<img src="/files/media/icons/contact.jpg"
alt="<<banner02.jpg>>" style="width:100%"
>
</div>
';?>
</a>