diff options
author | Andy Green <andy@warmcat.com> | 2018-07-03 11:33:59 +0800 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2022-12-19 16:49:09 +0100 |
commit | 093ac9697068833a15cae2dbbd5ffbc0203741c0 (patch) | |
tree | 32653fc7b87d4f91abad02dc11f6afc07f3fab28 /cgit.h | |
parent | 91f25909b9572ebdf3a0fed8224bf03d0d9bf3db (diff) | |
download | cgit-093ac9697068833a15cae2dbbd5ffbc0203741c0.tar.gz cgit-093ac9697068833a15cae2dbbd5ffbc0203741c0.tar.bz2 cgit-093ac9697068833a15cae2dbbd5ffbc0203741c0.zip |
css: change to be a list
Without changing the default behaviour of including
/cgit.css if nothing declared, allow the "css" config
to be given multiple times listing one or more
alternative URL paths to be included in the document
head area.
Signed-off-by: Andy Green <andy@warmcat.com>
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'cgit.h')
-rw-r--r-- | cgit.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -195,7 +195,6 @@ struct cgit_config { char *cache_root; char *clone_prefix; char *clone_url; - char *css; char *favicon; char *footer; char *head_include; @@ -206,6 +205,7 @@ struct cgit_config { char *module_link; char *project_list; struct string_list readme; + struct string_list css; char *robots; char *root_title; char *root_desc; |