Skip to content

Commit 5d2a1de

Browse files
authored
fix: remove trailing slash on void elements (#64)
1 parent 3534d2e commit 5d2a1de

1 file changed

Lines changed: 23 additions & 23 deletions

File tree

_includes/meta.html

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,34 @@
33
<title>{{ page.title }}</title>
44
{% if include.content == "404" %}
55
<!-- The "robots" metadata disallowing page indexing is manually added to the 404 page since accessing it directly returns HTTP Status Code 200 -->
6-
<meta name="robots" content="noindex, nofollow" />
6+
<meta name="robots" content="noindex, nofollow">
77
{% endif %}
8-
<meta name="description" content="{{ page.description }}"/>
8+
<meta name="description" content="{{ page.description }}">
99

10-
<meta name="theme-color" content="#241f31"/>
11-
<meta name="color-scheme" content="dark light"/>
10+
<meta name="theme-color" content="#241f31">
11+
<meta name="color-scheme" content="dark light">
1212

13-
<meta name="viewport" content="width=device-width, initial-scale=1"/>
13+
<meta name="viewport" content="width=device-width, initial-scale=1">
1414

15-
<meta property="og:title" content="{{ page.title }}"/>
16-
<meta property="og:description" content="{{ page.description }}"/>
17-
<meta property="og:type" content="website"/>
18-
<meta property="og:image" content="https://secureblue.dev/assets/icons/opengraph.png"/>
19-
<meta property="og:image:width" content="512"/>
20-
<meta property="og:image:height" content="512"/>
21-
<meta property="og:image:alt" content="secureblue logo"/>
22-
<meta property="og:site_name" content="secureblue"/>
23-
<meta property="og:url" content="https://secureblue.dev/{{ include.content }}"/>
15+
<meta property="og:title" content="{{ page.title }}">
16+
<meta property="og:description" content="{{ page.description }}">
17+
<meta property="og:type" content="website">
18+
<meta property="og:image" content="https://secureblue.dev/assets/icons/opengraph.png">
19+
<meta property="og:image:width" content="512">
20+
<meta property="og:image:height" content="512">
21+
<meta property="og:image:alt" content="secureblue logo">
22+
<meta property="og:site_name" content="secureblue">
23+
<meta property="og:url" content="https://secureblue.dev/{{ include.content }}">
2424

25-
<link rel="canonical" href="https://secureblue.dev/{{ include.content }}"/>
25+
<link rel="canonical" href="https://secureblue.dev/{{ include.content }}">
2626

27-
<link rel="icon" type="image/png" href="/assets/icons/favicon-96x96.png" sizes="96x96" />
28-
<link rel="icon" type="image/svg+xml" href="/assets/icons/favicon.svg" />
29-
<link rel="shortcut icon" href="/assets/icons/favicon.ico" />
30-
<link rel="apple-touch-icon" sizes="180x180" href="/assets/icons/apple-touch-icon.png" />
31-
<meta name="apple-mobile-web-app-title" content="secureblue" />
32-
<link rel="mask-icon" href="/assets/icons/mask-icon.svg" color="#096b9f"/>
27+
<link rel="icon" type="image/png" href="/assets/icons/favicon-96x96.png" sizes="96x96">
28+
<link rel="icon" type="image/svg+xml" href="/assets/icons/favicon.svg">
29+
<link rel="shortcut icon" href="/assets/icons/favicon.ico">
30+
<link rel="apple-touch-icon" sizes="180x180" href="/assets/icons/apple-touch-icon.png">
31+
<meta name="apple-mobile-web-app-title" content="secureblue">
32+
<link rel="mask-icon" href="/assets/icons/mask-icon.svg" color="#096b9f">
3333

34-
<link rel="stylesheet" href="/assets/main.css"/>
34+
<link rel="stylesheet" href="/assets/main.css">
3535

36-
<link rel="manifest" href="/assets/manifest.webmanifest" />
36+
<link rel="manifest" href="/assets/manifest.webmanifest">

0 commit comments

Comments
 (0)