The SupportIT server www.tojnar.cz is hosted on is being decommissioned. To make the migration faster, we will just copy the current state and convert it to Hakyll incrementally. This mostly imports the tree as is minus accidentally misplaced files. Additionally, the following changes were made: - line separators were converted using dos2unix - file encodings were changed from windows-1250 to utf-8 - highslide and related files are now loaded from root instead of per-gallery copy - uppercase JPG extensions were changed to lowercase remove private
41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<?php
|
|
$pages = array("rozpis"=>"Rozpis", "uvod-ob"=>"Úvod do OB", "novinky"=>"Novinky", "zavody-ob"=>"Závody v okolí", "vysledky"=>"Výsledky závodu", "fotografie"=>"Fotografie ze závodu");
|
|
$pg = $_GET["page"];
|
|
if($pages[$pg]){
|
|
$page = $pg . ".phtml";
|
|
$title = $pages[$pg];
|
|
}else{
|
|
$page = "novinky.phtml";
|
|
$title = $pages["novinky"];
|
|
}
|
|
?>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<title><?php echo $title; ?> - Přebor škol okresu Most v orientačním běhu</title>
|
|
<link rel="stylesheet" type="text/css" href="./style.css" media="screen, projection">
|
|
<link rel="stylesheet" type="text/css" href="./print.css" media="print">
|
|
</head>
|
|
<body>
|
|
<div id="header">
|
|
<h1>Přebor základních a středních škol okresu Most v orientačním běhu</h1>
|
|
</div>
|
|
<menu>
|
|
<li><a href="./">Home</a></li>
|
|
<li><a href="./rozpis.html">Rozpis</a></li>
|
|
<li><a href="./uvod-ob.html">Úvod do OB</a></li>
|
|
<li><a href="./zavody-ob.html">Další OB akce</a></li>
|
|
<li><a href="./vysledky.html">Výsledky</a></li>
|
|
<li><a href="./fotografie.html">Fotografie</a></li>
|
|
</menu>
|
|
<div id="content">
|
|
<?php include($page); ?>
|
|
<!-- <div id="sponsors">
|
|
<a href="/neco.html"><img src="menuitem.png" alt=""></a>
|
|
<a href="/neco.html"><img src="menuitemh.png" alt=""></a>
|
|
</div> -->
|
|
</div>
|
|
</body>
|
|
</html>
|