Skip to content

Commit

Permalink
chore: do not use closing slash which is generally preferred in HTML5
Browse files Browse the repository at this point in the history
  • Loading branch information
fguillot committed Aug 18, 2024
1 parent 02c8145 commit f6c22dd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions layouts/partials/head.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>{{ .Title }} - {{ .Site.Title }}</title>
{{ if .Description }}
<meta name="description" content="{{ .Description }}" />
<meta name="description" content="{{ .Description }}">
{{ end }}

<link rel="shortcut icon" href="/favicon.png" type="image/png" />
<link rel="stylesheet" type="text/css" href="/stylesheet.css" />
<link rel="stylesheet" type="text/css" href="/gh-dark-style.css" />
<link rel="shortcut icon" href="/favicon.png" type="image/png">
<link rel="stylesheet" type="text/css" href="/stylesheet.css">
<link rel="stylesheet" type="text/css" href="/gh-dark-style.css">
</head>

0 comments on commit f6c22dd

Please sign in to comment.