Back (Current repo: stagit)

fork of stagit, static page generator for git
To clone this repository:
git clone https://git.viktor1993.net/stagit.git
Log | Download | Files | Refs | README | LICENSE

commit 9877315622730164773399b3edfe7ed8adbc5499
parent b2ccda7c98e361e28fc53dc0f6010342dec19f83
Author: root <root>
Date:   Sun, 20 Apr 2025 14:20:20 +0200

stop loading non-existent css file

Diffstat:
Mstagit-index.c | 2+-
Mstagit-index.o | 0
2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/stagit-index.c b/stagit-index.c @@ -102,7 +102,7 @@ writeheader(FILE *fp) "<title>", fp); xmlencode(fp, description, strlen(description)); fprintf(fp, "</title>\n<link rel=\"icon\" type=\"image/png\" href=\"%sfavicon.png\" />\n", relpath); - fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstyle.css\" />\n", relpath); + fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstylesheet.css\" />\n", relpath); fputs("</head>\n<body><div class=\"main-container\">\n", fp); fputs("<table>\n<tr><td><span class=\"repotitle\">", fp); xmlencode(fp, description, strlen(description)); diff --git a/stagit-index.o b/stagit-index.o Binary files differ.