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

31 lines
871 B
PHP
Executable File

#!/usr/bin/php
<?php
// Dynamic testing of whether new images around the banner is wanted.
if (!isset($GLOBALS["SHOW_BANNER_PICS"])) {
$GLOBALS["SHOW_BANNER_PICS"] = true;
}
$show_pics = $GLOBALS["SHOW_BANNER_PICS"];
$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>