aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorsten Ortlepp <post@ortlepp.eu>2020-02-29 15:49:19 +0100
committerThorsten Ortlepp <post@ortlepp.eu>2020-02-29 15:49:19 +0100
commit27ed596c480a0feed503cc9b3efa98094f6db8ec (patch)
treee1d69373fffd14970401b61608c40f35b4574cb3
parent6537d1b01a2da2f2e406f72802c0b21c2e8fd182 (diff)
downloadstagit-fork-27ed596c480a0feed503cc9b3efa98094f6db8ec.zip
Added meta element for viewport
-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])