willy.club/views/templates/header.php

29 lines
763 B
PHP
Raw Normal View History

2022-12-13 16:59:47 +00:00
<?php
function special_events(): string {
return 'Christmas';
}
?>
2022-11-29 12:49:29 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2022-12-13 16:59:47 +00:00
<title><?=htmlspecialchars($title)?></title>
<link rel="stylesheet" href="<?=url('/static/style/main.css')?>">
2022-11-29 12:49:29 +00:00
</head>
<body>
2022-12-13 16:59:47 +00:00
<?php if (special_events() === 'Christmas'): ?>
<script src="<?=url('/static/js/snow.js')?>"></script>
<?php endif; ?>
2022-11-29 12:49:29 +00:00
2022-12-13 16:59:47 +00:00
<div class="container">
<header>
2022-12-18 14:09:40 +00:00
<a href="<?=url('/')?>">
<img src="<?=url('/static/img/banner.png')?>" width="600" height="150" alt="Click here to go to the homepage.">
</a>
2022-12-13 16:59:47 +00:00
</header>
<main>