Website/view/header.php

27 lines
560 B
PHP

<?php
if (!isset($is_index)) {
$is_index = false;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="<?=url('/')?>style.css">
<?php if ($is_index): ?>
<title>Willy's Website</title>
<?php else: ?>
<title><?=$title?> | Willy's Website</title>
<?php endif; ?>
</head>
<body>
<header>
<nav>
<a href="<?=url('/')?>">Willy's Website</a>
</nav>
</header>
<main>
<?php if (!$is_index): ?>
<h1><?=$title?></h1>
<?php endif; ?>