stagit
static git repository generator
git clone https://9o.is/git/stagit.git
commit 8278b72189bf388aae35626762163aa3bb005946 parent ba3aa79badf5fe5cf9b01e42aeb4b7082bbbc568 Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Fri, 19 Mar 2021 11:29:53 +0100 add meta viewport on stagit-index too Patch by Oscar Benedito, thanks! Diffstat:
| M | stagit-index.c | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/stagit-index.c b/stagit-index.c @@ -66,6 +66,7 @@ writeheader(FILE *fp) fputs("<!DOCTYPE html>\n" "<html>\n<head>\n" "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n" + "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n" "<title>", fp); xmlencode(fp, description, strlen(description)); fprintf(fp, "</title>\n<link rel=\"icon\" type=\"image/png\" href=\"%sfavicon.png\" />\n", relpath);