mirror of
https://git.zx2c4.com/cgit
synced 2025-08-01 08:34:36 +02:00
Add head-include configuration option.
This patch adds an option to the configuration file, "head-include", which works just like "header" or "footer", except the content is put into the HTML's <head> tag.
This commit is contained in:
parent
45e7fcecc1
commit
b5a3a20496
3 changed files with 6 additions and 1 deletions
2
cgit.c
2
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, "head-include"))
|
||||
ctx.cfg.head_include = xstrdup(value);
|
||||
else if (!strcmp(name, "header"))
|
||||
ctx.cfg.header = xstrdup(value);
|
||||
else if (!strcmp(name, "logo"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue