-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (58 loc) · 2.48 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
<html>
<head>
<meta name="google-site-verification" content="nqrVvXWTno5Z3SP1_XLv_v6a1MJGeh3xJbfxeiSleRw" />
<title>struthio.github.io</title>
<link rel="stylesheet" type="text/css" href="layout.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.0/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.0/jquery-ui.min.js"></script>
<script>
$( function()
{
$( "a" ).hover(
function()
{
var tPreview = $(this).attr('title');
if (!tPreview)
return;
if (tPreview.substring(0,4) == 'img:')
$('#previewContents').html($('<img>').attr('src',tPreview.substring(4)));
else $('#previewContents').html(tPreview);
}, function()
{
$('#previewContents').html('');
}
);
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-80666514-2', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="container">
<div id="menu">
<h1 class="menu">Raspberry Pi</h1>
<a href="page_rasp_heatsink.html" title="Raspberry Pi 3 aluminum and copper heatsink test">Raspberry Pi 3 Heatsink Test</a><br/>
<h1 class="menu">MQTT</h1>
<a href="htmlMQTTViewer/mqtt_dashboard.html" title="Simple Websockets MQTT dashboard">JavaScript Dashboard</a><br/>
<a href="htmlMQTTViewer/mqtt_dashboard_v2.html" title="MQTT Dashboard Version 2">JavaScript Dashboard.v2</a><br/>
<a href="htmlMQTTViewer/mqtt_led_preview.html" title="Preview of LED statun on LED-Strip Temperature Monitor">LED Strip Preview</a><br/>
<a href="htmlMQTTViewer/mqtt_condition_monitor.html" title="Condition Manager WebGUI">CM WebGUI</a><br/>
<a href="htmlMQTTViewer/mqtt_led_matrix.html" title="LED Matrix Controller">Led Matrix Controller</a><br/>
<h1 class="menu">Other</h1>
<a href="https://pl.gravatar.com/struthio2015" title="img:https://secure.gravatar.com/avatar/b1326f280519791e5470ac57ab7877cd?size=200">Gravatar</a><br/>
</div>
<div id="preview">
<div id="previewTitle"></div>
<div id="previewContents"></div>
</div>
</div>
<div id="dialog-page"></div>
</body>
</html>