-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
55 lines (55 loc) · 2.86 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content="Восход и закат солнца, истинный полдень. Сумерки и золотой час. Вычисление юлианской даты. Положение солнца в эклиптике."/>
<meta property="og:title" content="SunPos: Sun coords., sunrise & sunset" />
<meta property="og:url" content="https://sunpos.ru" />
<meta property="og:description" content="Sun coordinates, sunrise & sunset, twilight time, golden hour calculation" />
<meta property="og:image" content="http://sunpos.ru/img/sunm.png">
<meta property="og:type" content="article" />
<meta property="og:locale" content="en_GB" />
<meta property="og:locale:alternate" content="ru_RU" />
<title>SunPos: Sunrise and sunset times, sun coordinates</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link href="https://use.fontawesome.com/releases/v5.0.1/css/all.css" rel="stylesheet">
</head>
<body>
<div class="container-fluid" id="app">
<div class="card bg-light">
<div class="card-body text-info">
<img src="/dist/sunm.svg" width="64" height="64">
<h4>SunPos is loading...</h4>
</div>
</div>
</div>
<footer>
<div class="container-fluid">
<br/>
<div class="card bg-light">
<div class="card-header">SunPos: sunrise and sunset times, sun coordinates</div>
<div class="card-body text-info">
<p><strong>SunPos application provides various information about sun:</strong></p>
<ul>
<li>Where is the sun?</li>
<li>What time is solar noon?</li>
<li>Sunrise and sunset times</li>
<li>Julian day number and normalized Julian day number</li>
<li>Ecliptic and equatorial coordinates</li>
<li>Sun azimuth, zenith and elevation angle</li>
<li>Twilight time at morning and evening</li>
<li>Photography golden hour</li>
<li>Day length and local sun coordinates</li>
<li>Sun solstice and equinox parameters</li>
</ul>
<p>Designed and programmed by <a href="mailto:ipmonk@mail.ru">RognarSPB</a></p>
<p>Powered by <a href="https://vuejs.org/">Vue.js</a> and <a href="https://d3js.org/">D3js</a> projects</p>
</div>
</div>
</div>
</footer>
<script src="/dist/build.js"></script>
</body>
</html>