Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: oldheating gps motorhome heating
css/web-nav-css.c
- Committer:
- andrewboyson
- Date:
- 2019-04-29
- Revision:
- 109:3e82f62c7e1f
- Parent:
- 103:91194cc19bbb
File content as of revision 109:3e82f62c7e1f:
#include "http.h"
static const char* cssNav =
#include "web-nav-css.inc"
;
const char* WebNavCssDate = __DATE__;
const char* WebNavCssTime = __TIME__;
void WebNavCss()
{
HttpOk("text/css; charset=UTF-8", "max-age=3600", WebNavCssDate, WebNavCssTime);
HttpAddText(cssNav);
}