diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2009-01-29 21:27:39 +0100 |
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2009-01-29 21:27:39 +0100 |
| commit | b115955d71c50cd2d0065c45f3df6b02fa4730bd (patch) | |
| tree | 074182f3e305b4982a97c482ed5fbcc5c6d270a7 /cgit.c | |
| parent | Merge branch 'stable' (diff) | |
| download | cgit-wires-b115955d71c50cd2d0065c45f3df6b02fa4730bd.tar.gz | |
Add support for a custom header
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.c')
| -rw-r--r-- | cgit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c index 608cab6..64d95f9 100644 --- a/cgit.c +++ b/cgit.c @@ -31,6 +31,8 @@ void config_cb(const char *name, const char *value) ctx.cfg.favicon = xstrdup(value); else if (!strcmp(name, "footer")) ctx.cfg.footer = xstrdup(value); + else if (!strcmp(name, "header")) + ctx.cfg.header = xstrdup(value); else if (!strcmp(name, "logo")) ctx.cfg.logo = xstrdup(value); else if (!strcmp(name, "index-header")) |