ntv-site/includes/header.php

24 lines
877 B
PHP
Raw Permalink Normal View History

2023-03-27 15:46:52 +00:00
<?php
$cache = bin2hex(random_bytes(16));
?><!DOCTYPE html>
2023-03-26 07:48:25 +00:00
<html>
<head>
<title>NTV</title>
2023-03-27 15:46:52 +00:00
<link rel="stylesheet" href="/css/styles.css?cache=<?php echo $cache; ?>">
<script src="/js/song-display.js?cache=<?php echo $cache; ?>"></script>
2023-03-26 07:48:25 +00:00
</head>
<body>
<header>
<a href="/"><img src="/img/banner.png" class="banner" alt='NTV banner with the tagline "You decide."'></a>
<nav>
<a href="/" class="button">home</a>
2023-03-27 15:46:52 +00:00
<a href="/watch.php" class="button">watch</a>
<a href="javascript:alert('queue not implemented')" class="button">queue</a>
<a href="/request.php" class="button">request</a>
<a href="javascript:alert('about not implemented')" class="button">about</a>
<a href="javascript:alert('contact not implemented')" class="button">contact</a>
<div class="song-display" id="song-display">&nbsp;</div>
2023-03-26 07:48:25 +00:00
</nav>
</header>
<main>