2013-11-19 16:55:01 +01:00
|
|
|
<!DOCTYPE html>
|
2013-11-27 11:12:50 +01:00
|
|
|
<!--
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
2015-01-18 18:31:23 +01:00
|
|
|
<html lang="de" manifest="manifest.appcache">
|
2013-11-19 16:55:01 +01:00
|
|
|
<head>
|
2014-08-26 17:49:23 +02:00
|
|
|
<title>Bärneruhr - Die Zeit im Wort</title>
|
2015-01-15 15:04:06 +01:00
|
|
|
<meta charset="utf-8"/>
|
2014-08-26 17:49:23 +02:00
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes"/>
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
|
|
|
|
<meta name="apple-mobile-web-app-title" content="Bärneruhr"/>
|
|
|
|
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1"/>
|
2015-01-19 00:42:16 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="dist/uhr.min.css"/>
|
|
|
|
<link rel="stylesheet" type="text/css" href="dist/uhr-black.min.css" data-class="black" data-name="Schwarz"/>
|
|
|
|
<link rel="stylesheet" type="text/css" href="dist/uhr-white.min.css" data-class="white" data-name="Weiss"/>
|
|
|
|
<link rel="stylesheet" type="text/css" href="dist/uhr-red.min.css" data-class="red" data-name="Rot"/>
|
|
|
|
<link rel="stylesheet" type="text/css" href="dist/uhr-yellow.min.css" data-class="yellow" data-name="Gelb"/>
|
|
|
|
<link rel="stylesheet" type="text/css" href="dist/uhr-green.min.css" data-class="green" data-name="Grün"/>
|
|
|
|
<link rel="stylesheet" type="text/css" href="dist/uhr-blue.min.css" data-class="blue" data-name="Blau"/>
|
|
|
|
<link rel="stylesheet" type="text/css" href="dist/uhr-pink.min.css" data-class="pink" data-name="Pink"/>
|
2014-08-26 17:49:23 +02:00
|
|
|
<link rel="shortcut icon" type="image/png" href="resources/favicon.png"/>
|
|
|
|
<link rel="apple-touch-icon-precomposed" href="resources/apple-touch-icon-precomposed.png"/>
|
2015-01-13 20:06:02 +01:00
|
|
|
<script type="text/javascript" src="dist/libs.min.js"></script>
|
2015-01-13 19:52:04 +01:00
|
|
|
<script type="text/javascript" src="dist/jquery.uhr.complete.min.js"></script>
|
2014-08-26 18:29:28 +02:00
|
|
|
<script type="text/javascript">
|
2014-09-02 18:53:20 +02:00
|
|
|
function go(url) {
|
|
|
|
window.location = url;
|
|
|
|
return true;
|
|
|
|
}
|
2014-08-26 18:29:28 +02:00
|
|
|
</script>
|
2013-11-19 16:55:01 +01:00
|
|
|
</head>
|
2013-12-17 21:50:28 +01:00
|
|
|
<body style="padding:0;margin:0;">
|
2014-08-26 17:49:23 +02:00
|
|
|
<div id="uhr"></div>
|
|
|
|
<p id="disclaimer">Created by <a href="http://www.fritteli.ch/">fritteli</a>, inspired by <a href="http://www.qlocktwo.com/">QLOCKTWO</a>. <a
|
2015-01-18 18:31:23 +01:00
|
|
|
onclick="go('info/index.html')" href="#">Read more!</a></p>
|
2014-08-26 17:49:23 +02:00
|
|
|
<script type="text/javascript">
|
|
|
|
(function($) {
|
|
|
|
var width = $(window).width();
|
|
|
|
var height = $(window).height();
|
|
|
|
var size = Math.min(width, height) + 'px';
|
|
|
|
$('#uhr').uhr({
|
2014-08-26 18:00:52 +02:00
|
|
|
width: size
|
2014-08-26 17:49:23 +02:00
|
|
|
});
|
|
|
|
})(jQuery);
|
|
|
|
</script>
|
2013-11-19 16:55:01 +01:00
|
|
|
</body>
|
|
|
|
</html>
|