mirror of
https://github.com/weewx/weewx.git
synced 2026-04-20 01:26:56 -04:00
45 lines
1.2 KiB
Cheetah
45 lines
1.2 KiB
Cheetah
## Copyright 2017 Tom Keffer, Matthew Wall
|
|
## Distributed under terms of GPLv3. See LICENSE.txt for your rights.
|
|
#errorCatcher Echo
|
|
#encoding UTF-8
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head profile="http://www.w3.org/2005/10/profile">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>$station.location Celestial Details</title>
|
|
<link rel="icon" type="image/png" href="favicon.ico" />
|
|
<link rel="stylesheet" type="text/css" href="standard.css"/>
|
|
<script type="text/javascript" src="standard.js"></script>
|
|
<style>
|
|
#celestial_widget th {
|
|
font-weight: normal;
|
|
text-align: right;
|
|
}
|
|
#celestial_widget .widget_title {
|
|
margin-bottom: 25px;
|
|
}
|
|
#celestial_widget .label {
|
|
font-size: 100%;
|
|
}
|
|
#celestial_widget .data {
|
|
font-size: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
#include "titlebar.inc"
|
|
|
|
<div id="contents">
|
|
<p><a href="index.html">❰ Current Conditions</a></p>
|
|
|
|
<div id="widget_group">
|
|
#include "celestial.inc"
|
|
</div>
|
|
|
|
#include "identifier.inc"
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|