aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-01-19 14:15:49 -0500
committerBradley Taunt <bt@btxx.org>2024-01-19 14:15:49 -0500
commite882e568f1cb033a4d2b560939846fb0f85527d0 (patch)
tree4163fdc676f350bf45051eabb14ca904667f08e1
parent3cedf50d3b636196ecd8c5e3aaffadf42140f8f7 (diff)
Fix quote error
-rw-r--r--ssgit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssgit.c b/ssgit.c
index 30acc9e..4eb628a 100644
--- a/ssgit.c
+++ b/ssgit.c
@@ -16,7 +16,7 @@ struct Config {
};
void header(FILE *f, const char *repo_name, const char *desc) {
- fprintf(f, "<html lang='en'><head><meta charset='UTF-8'><meta name='viewport' content='width=device-width, initial-scale=1.0'><title>%s - %s</title><style>*{box-sizing:border-box;}body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:auto;}pre{overflow:auto;}</style></head><body><header><nav><a href="/">git.btxx.org</a></header>\n", repo_name, desc);
+ fprintf(f, "<html lang='en'><head><meta charset='UTF-8'><meta name='viewport' content='width=device-width, initial-scale=1.0'><title>%s - %s</title><style>*{box-sizing:border-box;}body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:auto;}pre{overflow:auto;}</style></head><body><header><nav><a href='/''>git.btxx.org</a></header>\n", repo_name, desc);
}
const char footer[] =