Common stuff for all my devices' web server pages: css, login, log, ipv4, ipv6, firmware update, clock, reset info etc.

Dependents:   oldheating gps motorhome heating

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers web-nav-css.c Source File

web-nav-css.c

00001 #include "http.h"
00002 
00003 static const char* cssNav =
00004 #include "web-nav-css.inc"
00005 ;
00006 const char* WebNavCssDate = __DATE__;
00007 const char* WebNavCssTime = __TIME__;
00008 
00009 void WebNavCss()
00010 {
00011     HttpOk("text/css; charset=UTF-8", "max-age=3600", WebNavCssDate, WebNavCssTime);
00012     HttpAddText(cssNav);
00013 }