diff options
author | Thorsten Ortlepp <post@ortlepp.eu> | 2020-02-29 15:49:19 +0100 |
---|---|---|
committer | Thorsten Ortlepp <post@ortlepp.eu> | 2020-02-29 15:49:19 +0100 |
commit | 27ed596c480a0feed503cc9b3efa98094f6db8ec (patch) | |
tree | e1d69373fffd14970401b61608c40f35b4574cb3 | |
parent | 6537d1b01a2da2f2e406f72802c0b21c2e8fd182 (diff) | |
download | stagit-fork-27ed596c480a0feed503cc9b3efa98094f6db8ec.zip |
Added meta element for viewport
-rw-r--r-- | stagit-index.c | 1 | ||||
-rw-r--r-- | stagit.c | 1 |
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); @@ -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]) |