Merge in skirogaining.krk-litvinov.cz
There is no need to have skirogaining website both on tojnar.cz and krk-litvinov.cz.
Since all skirogainings have been organized by KRK, let’s merge them into a single tree
and host it on krk-litvinov.cz.
The code is copied from skirogaining.krk-litvinov.cz mostly as is, the only changes
are changing line endings to UNIX and removing redundant load.lib.php and shout.php
in favour of the one in this repo since there were no changes compared to old tojnar.cz.
The redirects from skirogaining.tojnar.cz will need to be set as follows:
/Skirogaining_2010/(.*) → https://skirogaining.tojnar.cz/2010/$1
/(.*) → https://skirogaining.tojnar.cz/2012/$1
This commit is contained in:
112
2014/template.html
Normal file
112
2014/template.html
Normal file
@@ -0,0 +1,112 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-language" content="%lang%">
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<title>%titleTag%</title>
|
||||
<meta name="author" content="%author%">
|
||||
<meta name="verify-v1" content="tA57Ngk71UZQj8JZ/8XLgPFM7Z3S7nsD1eEUs2eJl6I=">
|
||||
<link rel="stylesheet" type="text/css" href="%root%/screen.css" media="screen">
|
||||
<link rel="stylesheet" type="text/css" href="%root%/hs.css" media="screen">
|
||||
<link rel="stylesheet" type="text/css" href="%root%/print.css" media="print">
|
||||
<script type="text/javascript" src="%root%/hs.js"></script>
|
||||
<link rel="shortcut icon" href="%root%/gpx/favicon.png" type="image/png">
|
||||
<script type="text/javascript">
|
||||
hs.graphicsDir = '%root%/gpx/';
|
||||
hs.align = 'center';
|
||||
hs.transitions = ['expand', 'crossfade'];
|
||||
hs.outlineType = 'rounded-white';
|
||||
hs.fadeInOut = true;
|
||||
//hs.dimmingOpacity = 0.75;
|
||||
// Add the controlbar
|
||||
hs.addSlideshow({
|
||||
//slideshowGroup: 'group1',
|
||||
interval: 5000,
|
||||
repeat: false,
|
||||
useControls: true,
|
||||
fixedControls: 'fit',
|
||||
overlayOptions: {
|
||||
opacity: .75,
|
||||
position: 'bottom center',
|
||||
hideOnMouseOut: true
|
||||
}
|
||||
|
||||
});
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
||||
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
try {
|
||||
var pageTracker = _gat._getTracker("UA-10060558-1");
|
||||
pageTracker._trackPageview();
|
||||
} catch(err) {}</script>
|
||||
<script type="text/javascript">
|
||||
function activatePlaceholders() {
|
||||
var detect = navigator.userAgent.toLowerCase();
|
||||
if (detect.indexOf("safari") > 0) return false;
|
||||
var inputs = document.getElementsByTagName("input");
|
||||
for (var i=0;i<inputs.length;i++) {
|
||||
if (inputs[i].getAttribute("type") == "text") {
|
||||
if (inputs[i].getAttribute("placeholder") && inputs[i].getAttribute("placeholder").length > 0) {
|
||||
inputs[i].value = inputs[i].getAttribute("placeholder");
|
||||
inputs[i].onclick = function() {
|
||||
if (this.value == this.getAttribute("placeholder")) {
|
||||
this.value = "";
|
||||
}
|
||||
return false;
|
||||
}
|
||||
inputs[i].onblur = function() {
|
||||
if (this.value.length < 1) {
|
||||
this.value = this.getAttribute("placeholder");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
window.onload=function() {
|
||||
activatePlaceholders();
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
<div id="header-content">
|
||||
<h1><a href="%headerLinkHref%">%pretitle%</a></h1>
|
||||
<h2>10. - 11. 1. 2015</h2>
|
||||
<form action="http://www.google.com/cse" id="cse-search-box">
|
||||
<div id="searchBox">
|
||||
<input type="text" name="q" placeholder="%search%"><input type="hidden" name="ie" value="UTF-8"><input type="hidden" name="cx" value="%searchform%">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<div id="content">
|
||||
<div id="main">
|
||||
<div id="main-content">
|
||||
<div id="aliases">%langPanel%</div>
|
||||
<h1>%title%</h1>
|
||||
<p class="aInfo">%ainfo%</p>
|
||||
%article%
|
||||
</div>
|
||||
</div>
|
||||
<div id="menu">
|
||||
<div id="menu-content">
|
||||
%menu%
|
||||
</div>
|
||||
</div>
|
||||
<hr class="cleaner">
|
||||
</div>
|
||||
<!--<div id="footer">
|
||||
<div id="footer-content">
|
||||
<span class="tl"></span>
|
||||
<span class="tr"></span>
|
||||
<a href="#header" id="goTop">%gotop%</a>
|
||||
<span class="bl"></span>
|
||||
<span class="br"></span>
|
||||
</div>
|
||||
</div>-->
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user