17 lines
605 B
HTML
17 lines
605 B
HTML
<div id="grass"></div>
|
|
|
|
<br>
|
|
<footer>
|
|
<a
|
|
id="view-background"
|
|
href="<?= $is_background ? "/" : "/background" ?>"
|
|
class="js-link"
|
|
onmouseup="document.getElementById('nav').style.opacity = document.getElementById('main-and-sidebar').style.opacity = 1"
|
|
onmouseenter="document.getElementById('nav').style.opacity = document.getElementById('main-and-sidebar').style.opacity = 0"
|
|
onmouseleave="document.getElementById('nav').style.opacity = document.getElementById('main-and-sidebar').style.opacity = 1"
|
|
>
|
|
<?= $is_background ? "Back to homepage" : "Enjoying the background?" ?>
|
|
</a>
|
|
</footer>
|
|
|