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
68 lines
2.0 KiB
PHP
68 lines
2.0 KiB
PHP
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<?php
|
|
$pages = array("basic_info"=>"Basic info", "mapy_NZ"=>"ROG mapy NZ", "novinky"=>"Novinky", "travels"=>"Příprava výletů", "zavod"=>"Závod MS 2010", "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; ?> MS v rogainingu 2010</title>
|
|
<link rel="stylesheet" type="text/css" href="./style.css" media="screen, projection">
|
|
<link rel="stylesheet" type="text/css" href="./print.css" media="print">
|
|
<link rel="stylesheet" type="text/css" href="/highslide4/highslide.css">
|
|
<script type="text/javascript" src="/highslide4/highslide-with-gallery.js"></script>
|
|
<script type="text/javascript">
|
|
hs.graphicsDir = '/highslide4/graphics/';
|
|
hs.align = 'center';
|
|
hs.transitions = ['expand', 'crossfade'];
|
|
hs.outlineType = 'rounded-white';
|
|
hs.wrapperClassName = 'controls-in-heading';
|
|
hs.fadeInOut = true;
|
|
//hs.dimmingOpacity = 0.75;
|
|
|
|
// Add the controlbar
|
|
if (hs.addSlideshow) hs.addSlideshow({
|
|
//slideshowGroup: 'group1',
|
|
interval: 5000,
|
|
repeat: false,
|
|
useControls: true,
|
|
fixedControls: false,
|
|
overlayOptions: {
|
|
opacity: 1,
|
|
position: 'top right',
|
|
hideOnMouseOut: false
|
|
}
|
|
});
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="header">
|
|
<h1>MS v rogainingu 2010</h1>
|
|
</div>
|
|
<menu>
|
|
<li><a href="./">Home</a></li>
|
|
<!-- <li><a href="./rozpis.html">Rozpis</a></li> -->
|
|
<li><a href="./basic_info.html">Basic info</a></li>
|
|
<li><a href="./travels.html">Příprava výletů</a></li>
|
|
<li><a href="./mapy_NZ.html">ROG mapy NZ</a></li>
|
|
<li><a href="./zavod.html">Závod MS 2010</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>
|