summaryrefslogtreecommitdiff
path: root/rawdog
diff options
context:
space:
mode:
authorAdam Spragg <adam@spra.gg>2018-06-06 13:25:07 +0100
committerAdam Spragg <adam@spra.gg>2018-06-06 13:25:07 +0100
commitcb6fe83d9c23730c8ad33cc7d75c03c0afd12f65 (patch)
treebebe4bc61b8c85d37b4c860162b09ee34a6c4bfa /rawdog
parent07e873c5febe306fa9159eb7818506bf3dad1bdd (diff)
Fix HTML validation issues on <html> and <link>
<html> should have a 'lang=""' attribute, and </link> tags are not allowed by the spec.
Diffstat (limited to 'rawdog')
-rw-r--r--rawdog/page.template4
1 files changed, 2 insertions, 2 deletions
diff --git a/rawdog/page.template b/rawdog/page.template
index 60c695b..4c0528b 100644
--- a/rawdog/page.template
+++ b/rawdog/page.template
@@ -1,8 +1,8 @@
<!DOCTYPE html>
-<html>
+<html lang="en">
<head>
<title>Blog</title>
- <link rel="stylesheet" href="/style/main.css" type="text/css">
+ <link rel="stylesheet" href="/style/main.css" type="text/css" />
<meta name="robots" content="noindex,nofollow,noarchive">
__refresh__
</head>