Fix HTML validator errors

This commit is contained in:
Patrick Favre-Bulle 2023-02-26 23:40:18 +01:00
parent 5cab7a6ec8
commit 0080c4131a
No known key found for this signature in database
GPG key ID: 95A396FCC7E8EE9F
3 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@
{{ $scriptIndex := resources.Get "js/index.js" }}
{{ $js := slice $scriptJquery $scriptIcons $scriptIndex | resources.Concat "js/script.js" | resources.Minify | resources.Fingerprint }}
<script type="text/javascript" src="{{ $js.Permalink }}" integrity="{{ $js.Data.Integrity }}" ></script>
<script src="{{ $js.Permalink }}" integrity="{{ $js.Data.Integrity }}" ></script>
<!-- A partial to be overwritten by the user.
Simply place a custom_body.html into

View file

@ -1,5 +1,5 @@
{{ define "main" }}
<main class="content page-template page-{{ .Slug }}" role="main">
<main class="content page-template page-{{ .Slug }}">
<article class="post page">
<header class="post-header">
<a id="blog-logo" href="{{ "/" | relURL }}">

View file

@ -1,4 +1,4 @@
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>{{ with .Title }}{{ . }}{{ else }}{{ .Site.Title }}{{ end }}</title>