firmware wip - comment stuff

This commit is contained in:
Marcus 2024-04-30 22:26:16 +02:00
parent c93933ba20
commit 5e7db0946b

View file

@ -172,6 +172,8 @@ ESP8266WebServer webserver(80);
*/ */
// Template: const char HTMLexamplepage[] PROGMEM = R"EOF()EOF"; // Template: const char HTMLexamplepage[] PROGMEM = R"EOF()EOF";
// first part of HTML header stuff
const char HTMLheaderP1[] PROGMEM = R"EOF( const char HTMLheaderP1[] PROGMEM = R"EOF(
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
@ -180,7 +182,9 @@ const char HTMLheaderP1[] PROGMEM = R"EOF(
<meta name='viewport' content='width=device-width, initial-scale=1.0'> <meta name='viewport' content='width=device-width, initial-scale=1.0'>
<title> <title>
)EOF"; )EOF";
// page title // here comes the page title in returnHTMLheader()
// second part of HTML header stuff
const char HTMLheaderP2[] PROGMEM = R"EOF( const char HTMLheaderP2[] PROGMEM = R"EOF(
</title> </title>
<!-- <link rel='stylesheet' href='/style.css'> --> <!-- <link rel='stylesheet' href='/style.css'> -->
@ -276,7 +280,7 @@ a:active {
</head> </head>
<body> <body>
<ul class='nav'>)EOF"; <ul class='nav'>)EOF";
// Menu as unordered List, defined in returnHTMLheader // here comes the menu as unordered List in returnHTMLheader()
const char HTMLfooter[] PROGMEM = R"EOF( const char HTMLfooter[] PROGMEM = R"EOF(