aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--stagit-index.c1
-rw-r--r--stagit.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/stagit-index.c b/stagit-index.c
index ea8bc58..85efce6 100644
--- 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);
diff --git a/stagit.c b/stagit.c
index 8327ca3..de08e0b 100644
--- a/stagit.c
+++ b/stagit.c
@@ -344,6 +344,7 @@ writeheader(FILE *fp, const char *title)
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, title, strlen(title));
if (title[0] && strippedname[0])