Unidiff1 files changed, 6 insertions, 3 deletions
|
diff --git a/cgit.c b/cgit.c index 808ffe9..110face 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -10,3 +10,5 @@ |
10 | |
10 | |
11 | static const char cgit_doctype[] = |
11 | const char cgit_version[] = CGIT_VERSION; |
| |
12 | |
| |
13 | const char cgit_doctype[] = |
12 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" |
14 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n" |
@@ -14,6 +16,6 @@ static const char cgit_doctype[] = |
14 | |
16 | |
15 | static const char cgit_error[] = |
17 | const char cgit_error[] = |
16 | "<div class='error'>%s</div>"; |
18 | "<div class='error'>%s</div>"; |
17 | |
19 | |
18 | static const char cgit_lib_error[] = |
20 | const char cgit_lib_error[] = |
19 | "<div class='error'>%s: %s</div>"; |
21 | "<div class='error'>%s: %s</div>"; |
@@ -202,2 +204,3 @@ static void cgit_print_docstart(char *title) |
202 | html("</title>\n"); |
204 | html("</title>\n"); |
| |
205 | htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version); |
203 | html("<link rel='stylesheet' type='text/css' href='"); |
206 | html("<link rel='stylesheet' type='text/css' href='"); |
|