make separator image disableable

This commit is contained in:
bsod 2020-10-30 23:14:38 +01:00
parent 80b6c58e5d
commit 644f44f175
4 changed files with 19 additions and 4 deletions

View file

@ -1,4 +1,6 @@
<?php include('header.tpl'); ?>
<?php
include('header.tpl');
?>
<div id="content_margin">
<video autoplay playsinline nofullscreen nodownload autoplay loop mute style="pointer-events: none" src="video/Heart.m4v" width="80%" height="auto" ></video>

View file

@ -1,4 +1,7 @@
<?php include('header.tpl'); ?>
<?php
$show_sep=true;
include('header.tpl');
?>
<div id="content_padding">
<?php include('projects_data/project_items.php'); ?>
<div class="collection_container">

View file

@ -23,5 +23,9 @@
</ul>
</nav>
</header>
<img style="filter: brightness(110%) contrast(80%); position:relative; top: 90px; width: 100%; height: auto" src="/images/background_img/dev_con.jpg"/>
<?php
if ($show_sep == true) {
print('<img style="filter: brightness(110%) contrast(80%); position:relative; top: 90px; width: 100%; height: auto" src="/images/background_img/dev_con.jpg"/>');
}
?>

View file

@ -1,5 +1,11 @@
<?php include('header.tpl'); ?>
<?php
$show_sep=true;
include('header.tpl');
?>
<div id="content_padding">
</div>
<?php include('footer.tpl'); ?>