aboutsummaryrefslogtreecommitdiffstats
path: root/templates/index.html.j2
blob: 534b1ce6ff71b797cb598174f4466cc6453d9a36 (plain)
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
<!DOCTYPE HTML>
<html>
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1">
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<title>edaweb power monitor</title>
	<!-- JQuery and JQurty UI current version -->
    <script src='https://code.jquery.com/jquery-3.6.0.js'></script>
	<script src="https://code.jquery.com/ui/1.13.1/jquery-ui.js"></script>

	<!-- Highcharts libraries -->
	<script type="text/javascript" src="https://code.highcharts.com/highcharts.js"></script>
	<script type="text/javascript" src="https://code.highcharts.com/highcharts-more.js"></script>
	<script type="text/javascript" src="https://code.highcharts.com/modules/exporting.js"></script>
	<script type="text/javascript" src="https://code.highcharts.com/modules/export-data.js"></script>
	<script type="text/javascript" src="https://code.highcharts.com/modules/accessibility.js"></script>	
	
	<script type="text/javascript" src="https://code.highcharts.com/maps/modules/map.js"></script>
	<script type="text/javascript" src="https://code.highcharts.com/mapdata/custom/world-robinson.js"></script>

	<!-- local Javascript files -->
	<script type="text/javascript" src="{{ url_for('static', filename='scripts.js') }}"></script>
	<!-- remote and local CSS stylesheet -->
	<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>

<body>
    <header>
        <h1>edaweb power monitoring</h1>
        <div id="externallinks">
            <nav>
                <ul>
                    <li><a href="http://eda.gay">eda.gay</a></li>
                    <li><a href="http://wiki.eda.gay">wiki.eda.gay</a></li>
                </ul>
            </nav>
        </div>
    </header>

    <div id="main_content">
        <div id="multicharts">
            <ul id="charts_ul">
                <li>
                    <figure class="chart_container">
                        <div class="minichart" id="longterm_chart"></div>
                    </figure>
                </li>
                <li>
                    <figure class="chart_container">
                        <div class="minichart" id="hourly_chart"></div>
                    </figure>
                </li>
            </ul>
        </div>
    </div>

    <footer>
        <p><a href="https://github.com/jwansek/power.eda.gay">Source code released under GPLv3</a></p>
        <p><a href="https://www.fsf.org/campaigns/freejs">Read the Free Software Foundations statements about JavaScript</a></p>
    </footer>
</body>