diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2019-03-22 21:12:39 +0000 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2019-03-22 21:12:39 +0000 |
commit | 323070c2f1cb74792832df0cc1692fef7e1ac60e (patch) | |
tree | 83b6cc589c782d051773d695b6af987de0ca2947 /templates/default.html | |
parent | 76af250946a34d85756b57ee476dad06da96cb33 (diff) | |
download | the-tk.com-323070c2f1cb74792832df0cc1692fef7e1ac60e.tar.gz the-tk.com-323070c2f1cb74792832df0cc1692fef7e1ac60e.tar.xz the-tk.com-323070c2f1cb74792832df0cc1692fef7e1ac60e.zip |
Move meta charset up and add html lang
Diffstat (limited to 'templates/default.html')
-rw-r--r-- | templates/default.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/default.html b/templates/default.html index 07ff3ed..fa81443 100644 --- a/templates/default.html +++ b/templates/default.html @@ -1,11 +1,11 @@ <!DOCTYPE html> -<html> +<html lang="en-GB"> <head> + <meta charset="utf-8" /> <title>{{ page.title }}</title> <link rel="stylesheet" href="/style.css" /> <link rel="icon" type="image/png" sizes="32x32" href="/images/icon32x32.png" /> <link rel="icon" type="image/png" sizes="16x16" href="/images/icon16x16.png" /> - <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="description" content="{{ page.description }}" /> <meta name="author" content="Tomasz Kramkowski <tk@the-tk.com>" /> |