mirror of https://github.com/arendst/Tasmota.git
Add image name to GUI footer
This commit is contained in:
parent
0ee62e597b
commit
7e384ebff8
|
@ -408,7 +408,7 @@ const char HTTP_COUNTER[] PROGMEM =
|
|||
"<br><div id='t' style='text-align:center;'></div>";
|
||||
|
||||
const char HTTP_END[] PROGMEM =
|
||||
"<div style='text-align:right;font-size:11px;'><hr/><a href='https://bit.ly/tasmota' target='_blank' style='color:#aaa;'>Tasmota %s " D_BY " Theo Arends</a></div>"
|
||||
"<div style='text-align:right;font-size:11px;'><hr/><a href='https://bit.ly/tasmota' target='_blank' style='color:#aaa;'>Tasmota %s%s " D_BY " Theo Arends</a></div>"
|
||||
"</div>"
|
||||
"</body>"
|
||||
"</html>";
|
||||
|
@ -1005,7 +1005,7 @@ void WSContentStop(void) {
|
|||
WSContentSend_P(HTTP_COUNTER);
|
||||
}
|
||||
}
|
||||
WSContentSend_P(HTTP_END, TasmotaGlobal.version);
|
||||
WSContentSend_P(HTTP_END, TasmotaGlobal.version, TasmotaGlobal.image_name);
|
||||
WSContentEnd();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue