-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (81 loc) · 2.66 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>OpenLEADR: friendly and compliant OpenADR 2.0b and OpenADR 3.0 implementations</title>
<meta name="viewport" content="width=700px">
<style>
@font-face {
font-family: 'charter-webfont';
src: url('fonts/charter_regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'charter-webfont';
src: url('fonts/charter_italic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
html{
border-top: 5px solid #785b9c;
border-bottom: 5px solid #785b9c;
height: 100vh;
min-height: 510px;
box-sizing: border-box;
}
body{
max-width: 650px;
margin: 0px auto;
font-family: 'Charter', 'charter-webfont';
font-size: 16pt;
color: #333;
text-align: center;
line-height: 1.5em;
}
div.grid{
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
height: calc(100vh - 10px);
min-height: 500px;
}
a{
color: #785b9c;
text-decoration: none;
}
a:hover{
background-color: #785b9c;
padding: 0px 2px;
margin: -0px -2px;
color: white;
border-radius: 3px;
}
p.intro{
font-style: italic;
}
</style>
</head>
<body>
<div class="grid">
<div>
<header>
<img src="images/logo.svg" alt="OpenLEADR" width="400">
<p class="intro">Friendly and compliant implementations of <br> OpenADR 2.0b and OpenADR 3.0</p>
</header>
<main>
<p>OpenLEADR is a project that is part of the <a target="_blank" href="https://lfenergy.org/projects/openleadr/">
LF Energy Foundation</a>. It offers a fully featured and compliant OpenADR 2.0b implementation for <b>Python 3</b>
and an OpenADR 3.0 implementation written in <b>Rust</b>.
</p>
<p>Source code on GitHub:
<a target="_blank" href="https://github.com/OpenLEADR/openleadr-python">OpenADR 2.0b</a>,
<a target="_blank" href="https://github.com/OpenLEADR/openleadr-rs">OpenADR 3.0</a>.
</p>
<p>OpenADR 2.0b documentation: <a href="https://openleadr.org/docs/">/docs/</a>.</p>
</main>
</div>
</div>
</body>
</html>