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 / > .
-->
2013-11-19 16:55:01 +01:00
< html manifest = "manifest.appcache" >
< head >
2014-05-09 14:45:06 +02:00
< title > Bärneruhr - Die Zeit im Wort< / title >
2014-03-05 22:05:02 +01:00
< script type = "text/javascript" src = "jquery-2.1.0.min.js" > < / script >
< script type = "text/javascript" src = "jquery-ui-1.10.4.custom.min.js" > < / script >
2014-01-11 21:07:41 +01:00
< script type = "text/javascript" src = "jquery-cookie-1.4.0.js" > < / script >
2013-11-25 16:58:21 +01:00
< script type = "text/javascript" src = "uhr.js" > < / script >
< link rel = "stylesheet" type = "text/css" href = "uhr.css" / >
2013-11-28 09:57:50 +01:00
< link rel = "stylesheet" type = "text/css" href = "uhr-black.css" / >
< link rel = "stylesheet" type = "text/css" href = "uhr-blue.css" / >
< link rel = "stylesheet" type = "text/css" href = "uhr-green.css" / >
< link rel = "stylesheet" type = "text/css" href = "uhr-red.css" / >
< link rel = "stylesheet" type = "text/css" href = "uhr-white.css" / >
2014-06-27 13:43:35 +02:00
< link rel = "stylesheet" type = "text/css" href = "uhr-pink.css" / >
2014-01-11 22:09:52 +01:00
< link rel = "shortcut icon" type = "image/png" href = "favicon.png" / >
2013-11-25 16:58:21 +01:00
< meta http-equiv = "content-type" content = "text/html; charset=UTF-8" / >
2014-06-20 00:55:52 +02:00
< link rel = "apple-touch-icon-precomposed" href = "apple-touch-icon-precomposed.png" / >
2014-05-08 13:54:24 +02:00
< meta name = "apple-mobile-web-app-capable" content = "yes" / >
< meta name = "apple-mobile-web-app-status-bar-style" content = "black" / >
2014-05-09 15:21:45 +02:00
< meta name = "apple-mobile-web-app-title" content = "Bärneruhr" / >
< meta name = "viewport" content = "width=device-width,user-scalable=no,initial-scale=1" / >
2013-11-19 16:55:01 +01:00
< / head >
2013-12-17 21:50:28 +01:00
< body style = "padding:0;margin:0;" >
2014-05-15 15:20:48 +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 href = "info/" > Read more!< / a > < / p >
2013-11-27 18:37:38 +01:00
< script type = "text/javascript" src = "uhr-de_CH.js" > < / script >
2013-11-19 16:55:01 +01:00
< script type = "text/javascript" >
2014-01-11 23:16:20 +01:00
(function($) {
var width = $(window).width();
var height = $(window).height();
var size = (width < height ? width : height ) + ' px ' ;
$('#uhr').uhr({
2014-02-28 22:52:38 +01:00
width: size,
color: 'black',
language: 'de_CH',
force: true,
controls: false
2014-01-11 23:16:20 +01:00
});
})(jQuery);
2013-11-19 16:55:01 +01:00
< / script >
< / body >
< / html >