add meta viewport on stagit-index too
Patch by Oscar Benedito, thanks!
1 files changed, 1 insertions(+), 0 deletions(-) | |||
---|---|---|---|
M | stagit-index.c | +1 | -0 |
1@@ -66,6 +66,7 @@ writeheader(FILE *fp)
2 fputs("<!DOCTYPE html>\n"
3 "<html>\n<head>\n"
4 "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n"
5+ "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n"
6 "<title>", fp);
7 xmlencode(fp, description, strlen(description));
8 fprintf(fp, "</title>\n<link rel=\"icon\" type=\"image/png\" href=\"%sfavicon.png\" />\n", relpath);