You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.0 KiB
43 lines
1.0 KiB
6 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<% include ../partials/head %>
|
||
|
</head>
|
||
|
<body class="container">
|
||
|
|
||
|
<header>
|
||
|
<% include ../partials/header %>
|
||
|
</header>
|
||
|
|
||
|
<main>
|
||
|
<div class="jumbotron">
|
||
|
<h1>EnlivenMinetest</h1>
|
||
|
<p>Welcome.</p>
|
||
|
<h2> <!--result--></h2>
|
||
|
<p><%= msg %></p>
|
||
|
</div>
|
||
|
<p>assuming minetestserver ran as: <%= serverUser %></p>
|
||
|
<p>timezone (tz_offset/60*-1): <%= tzOffset %></p>
|
||
|
<p>selected date: <%= selectedDate %></p>
|
||
|
<h2>Activity Dates:</h2>
|
||
|
|
||
|
<ul>
|
||
|
<% logDates.forEach(function(logDate) { %>
|
||
|
<li><a href="?date=<%= logDate.date %>"><%= logDate.date %></a> - <%= logDate.active %></li>
|
||
|
<% }); %>
|
||
|
</ul>
|
||
|
<div style="color:gray" id="statusArea"></div>
|
||
|
<canvas id="myCanvas" width="100" height="1540"> <!--style="border:1px solid #c3c3c3;">-->
|
||
|
Your browser does not support the canvas element.
|
||
|
</canvas>
|
||
|
<div style="color:gray" id="outputArea">loading...</div>
|
||
|
<script src="js/main.js"></script>
|
||
|
</main>
|
||
|
|
||
|
<footer>
|
||
|
<% include ../partials/footer %>
|
||
|
</footer>
|
||
|
|
||
|
</body>
|
||
|
</html>
|