30 lines
855 B
HTML
Executable File
30 lines
855 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Welcome to telescopium</title>
|
|
<style>
|
|
body {
|
|
width: 35em;
|
|
margin: 0 auto;
|
|
font-family: Tahoma, Verdana, Arial, sans-serif;
|
|
}
|
|
#latest {
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to telescopium!</h1>
|
|
<p>This is shoofle's time lapse camera computer for the pear house backyard. It should take a picture daily and hold onto them, eventually compiling them into a timelapse automatically.</p>
|
|
|
|
<p>Please contact shoofle with any feature requests or questions.</p>
|
|
|
|
<p>The latest image from the camera is this:</p>
|
|
<img id="latest" src="/stills/test.jpg"/>
|
|
|
|
<p>The full catalog of still images should be seen at <a href="/stills/">http://telescopium.local/stills/</a>.</p>
|
|
|
|
<p>Telescopium's ip address is <code id="ip_address">ip addr goes here</code>.</p>
|
|
</body>
|
|
</html>
|