Merge in old tojnar.cz/krk (mostly) as is

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
This commit is contained in:
2022-01-14 10:22:22 +01:00
parent 8db618c057
commit 0ad86228e9
1006 changed files with 48751 additions and 0 deletions

40
prebor2010/index.php Normal file
View File

@@ -0,0 +1,40 @@
<!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>