2015-12-20 22:32:25 +01:00
|
|
|
|
<!DOCTYPE html>
|
2017-11-18 23:36:41 +01:00
|
|
|
|
<html lang="${locale}">
|
2015-12-20 22:32:25 +01:00
|
|
|
|
<head>
|
|
|
|
|
|
|
|
|
|
<meta charset="utf-8" />
|
2016-11-24 20:09:52 +01:00
|
|
|
|
<meta http-equiv="refresh" content="10">
|
2015-12-20 22:32:25 +01:00
|
|
|
|
<meta name="viewport"
|
|
|
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
|
|
|
<title>openHAB</title>
|
|
|
|
|
<link type="text/css" href="fonts/icomoon.css" rel="stylesheet" media="all">
|
2017-08-15 13:13:24 +02:00
|
|
|
|
<link type="text/css" href="css/bootstrap.min.css" rel="stylesheet"></link>
|
|
|
|
|
<link type="text/css" href="css/main.css" rel="stylesheet"></link>
|
2016-12-08 18:44:18 +01:00
|
|
|
|
<link rel="icon" href="favicon.ico" type="image/vnd.microsoft.icon"><link>
|
2017-06-24 23:24:10 +02:00
|
|
|
|
|
|
|
|
|
<script type="text/javascript" src="js/jquery.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="js/geolocation.js"></script>
|
2018-01-13 12:05:30 +01:00
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
$('a.link').each(function(index) {
|
|
|
|
|
var href = $(this)
|
|
|
|
|
.attr('href')
|
|
|
|
|
.replace(/{HOST}/g, window.location.host)
|
|
|
|
|
.replace(/{HOSTNAME}/g, window.location.hostname);
|
|
|
|
|
$(this).attr('href', href);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
2015-12-20 22:32:25 +01:00
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<header>
|
|
|
|
|
<div class="container">
|
|
|
|
|
<img src="img/openhab-logo.png" />
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
<section class="container">
|
2017-11-18 23:36:41 +01:00
|
|
|
|
<h1>${index.welcome}</h1>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
<div class="line">
|
|
|
|
|
<div class="decorator"></div>
|
|
|
|
|
<hr />
|
|
|
|
|
</div>
|
2017-11-18 23:36:41 +01:00
|
|
|
|
${warn}
|
2015-12-20 22:32:25 +01:00
|
|
|
|
<div class="links row">
|
2017-11-18 23:36:41 +01:00
|
|
|
|
${entries}
|
2015-12-20 22:32:25 +01:00
|
|
|
|
</div>
|
2016-05-21 12:48:09 +02:00
|
|
|
|
<div class="line">
|
2017-06-24 23:24:10 +02:00
|
|
|
|
<div class="geolocation">
|
|
|
|
|
<div class="decorator"></div>
|
|
|
|
|
<hr />
|
2017-11-18 23:36:41 +01:00
|
|
|
|
<p>${index.location-info}</p>
|
|
|
|
|
<p><span>${index.your-location} </span><span id="geolocation"></span></p>
|
2017-06-24 23:24:10 +02:00
|
|
|
|
</div>
|
2016-05-21 12:48:09 +02:00
|
|
|
|
<div class="decorator"></div>
|
|
|
|
|
<hr />
|
|
|
|
|
</div>
|
2017-11-18 23:36:41 +01:00
|
|
|
|
${common.getting-started}
|
2015-12-20 22:32:25 +01:00
|
|
|
|
</section>
|
|
|
|
|
<footer>
|
2017-11-18 23:36:41 +01:00
|
|
|
|
<p>openHAB ${version}</p>
|
2015-12-20 22:32:25 +01:00
|
|
|
|
</footer>
|
|
|
|
|
</body>
|
2016-01-08 22:14:47 +01:00
|
|
|
|
</html>
|