1print = conn.write || print
2
3// send a header
4print('HTTP/1.0 200 OK\r\n');
5print('Content-Type: text/html\r\n');
6print('\r\n');
7
8print("<html><body>\n");
9print("<p>This example page is generated by the ");
10print('<a href="https://github.com/civetweb/civetweb">CivetWeb web server</a>');
11print(" with server side javascript.</p>\n");
12
13var d = new Date();
14var n = d.toString();
15
16print("<p>Server time: " + n + "</p>\n");
17
18print("</body></html>\n");
19
20