diff options
| author | Bradley Taunt <git@btxx.org> | 2026-01-21 16:14:18 -0500 |
|---|---|---|
| committer | Bradley Taunt <git@btxx.org> | 2026-01-21 16:14:18 -0500 |
| commit | b36bf99a95f54b698aec0a58a4b8059746614049 (patch) | |
| tree | 3a8783445781b2243b8be78500db8eb29c769b38 /_includes/head.html | |
| parent | 9a1a73e62c89f014170643e6941ae0bb52a5a22c (diff) | |
Refactor for valid XHTML Strict doctype
Diffstat (limited to '_includes/head.html')
| -rwxr-xr-x | _includes/head.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/_includes/head.html b/_includes/head.html index 669f377..2725b64 100755 --- a/_includes/head.html +++ b/_includes/head.html @@ -1,10 +1,10 @@ <head> - <meta charset="UTF-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta name="color-scheme" content="dark light"> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <meta name="color-scheme" content="dark light" /> <title>{{ site.title }}: {{ page.title }}</title> - <meta name="description" content="{{ site.description }}"> - <link rel="shortcut icon" href="{{ site.baseurl }}/favicon.png"> - <link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ site.baseurl }}/atom.xml"> - <link rel="stylesheet" href="{{ site.baseurl }}/style.css"> + <meta name="description" content="{{ site.description }}" /> + <link rel="shortcut icon" href="{{ site.baseurl }}/favicon.png" /> + <link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ site.baseurl }}/atom.xml" /> + <link rel="stylesheet" href="{{ site.baseurl }}/style.css" /> </head> |
