|
|
@ -12,8 +12,7 @@
|
|
|
|
#include "html.h"
|
|
|
|
#include "html.h"
|
|
|
|
|
|
|
|
|
|
|
|
static const char cgit_doctype[] =
|
|
|
|
static const char cgit_doctype[] =
|
|
|
|
"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n"
|
|
|
|
"<!DOCTYPE html>\n";
|
|
|
|
" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static char *http_date(time_t t)
|
|
|
|
static char *http_date(time_t t)
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -723,7 +722,7 @@ void cgit_print_docstart(void)
|
|
|
|
|
|
|
|
|
|
|
|
char *host = cgit_hosturl();
|
|
|
|
char *host = cgit_hosturl();
|
|
|
|
html(cgit_doctype);
|
|
|
|
html(cgit_doctype);
|
|
|
|
html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n");
|
|
|
|
html("<html lang='en'>\n");
|
|
|
|
html("<head>\n");
|
|
|
|
html("<head>\n");
|
|
|
|
html("<title>");
|
|
|
|
html("<title>");
|
|
|
|
html_txt(ctx.page.title);
|
|
|
|
html_txt(ctx.page.title);
|
|
|
|