Show sourcecode
The following files exists in this folder. Click to view.
config.php
footer.php
header.php
header.php
46 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="utf-8">
<title><?php echo $title; ?></title>
<link rel="stylesheet" href="style.css" title="General stylesheet">
<!-- FAVICON TAGS -->
<link rel="apple-touch-icon" sizes="180x180" href="/~alrikmz/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/~alrikmz/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/~alrikmz/favicons/favicon-16x16.png">
<link rel="manifest" href="/~alrikmz/favicons/site.webmanifest">
<link rel="mask-icon" href="/~alrikmz/favicons/safari-pinned-tab.svg" color="#b22222">
<link rel="shortcut icon" href="/~alrikmz/favicons/favicon.ico">
<meta name="apple-mobile-web-app-title" content="Alriks sida">
<meta name="application-name" content="Alriks sida">
<meta name="msapplication-TileColor" content="#b22222">
<meta name="msapplication-config" content="/~alrikmz/favicons/browserconfig.xml">
<meta name="theme-color" content="#b22222">
<!-- ------------ -->
<!-- Each page can set $pageStyle to create additional style -->
<?php if(isset($pageStyle)) { ?>
<style>
<?php echo $pageStyle; ?>
</style>
<?php } ?>
</head>
<!-- The body id helps with highlighting current menu choice -->
<body<?php if(isset($pageId)) echo " id='$pageId' "; ?>>
<!-- header -->
<header id="top">
<h1 id="large-title" class="lighter">Webbserverprogrammering 1</h1>
<!-- navigation menu -->
<nav class="navmenu">
<a id="start-" href="index.php">Start</a>
<a id="reflections-" href="reflections.php">Reflektioner</a>
<a id="exercises-" href="exercises.php">Övningar</a>
<a id="projects-" href="projects.php">Projekt</a>
<a id="viewsource-" href="viewsource.php">Källkod</a>
</nav>
</header>