-
Notifications
You must be signed in to change notification settings - Fork 200
/
about_html.h
37 lines (37 loc) · 1.44 KB
/
about_html.h
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
// about.html file in raw data format for PROGMEM
//
const char about_html[] PROGMEM = R"=====(
<!DOCTYPE html>
<html>
<head>
<title>About ESP-radio</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<link rel="Shortcut Icon" type="image/ico" href="favicon.ico">
</head>
<body>
<ul>
<li><a class="pull-left" href="#">ESP Radio</a></li>
<li><a class="pull-left" href="/index.html">Control</a></li>
<li><a class="pull-left" href="/config.html">Config</a></li>
<li><a class="pull-left active" href="/about.html">About</a></li>
</ul>
<br><br><br>
<center>
<h1>** ESP Radio **</h1>
</center>
<p>Esp Radio -- Webradio receiver for ESP8266, 1.8" color display and VS1053 MP3 module.<br>
This project is documented at <a target="blank" href="https://github.com/Edzelf/Esp-radio">Github</a>.</p>
<p>Author: Ed Smallenburg<br>
Webinterface design: <a target="blank" href="http://www.sanderjochems.nl/">Sander Jochems</a><br>
App (Android): <a target="blank" href="https://play.google.com/store/apps/details?id=com.thunkable.android.sander542jochems.ESP_Radio">Sander Jochems</a><br>
Date: January 2017</p>
<script type="text/javascript">
var stylesheet = document.createElement('link') ;
stylesheet.href = 'radio.css' ;
stylesheet.rel = 'stylesheet' ;
stylesheet.type = 'text/css' ;
document.getElementsByTagName('head')[0].appendChild(stylesheet) ;
</script>
</body>
</html>
)=====" ;