Fix invalid <head>

Rejigger <head></head> order.

The `charset` meta element must be in the [first 1024 bytes](https://www.w3.org/International/questions/qa-html-encoding-declarations#quickanswer) in order to validate.
master
middling 9 years ago committed by Calin Tataru
parent 556b30d3b4
commit fc4d59bfd1
  1. 10
      layouts/partials/header.html

@ -1,16 +1,10 @@
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
<title>{{ .Title }}</title>
{{ partial "css" . }} {{ partial "js" . }} {{ .Hugo.Generator }}
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ .Title }}</title>
{{ partial "css" . }} {{ partial "js" . }} {{ .Hugo.Generator }}
</head>
<body>

Loading…
Cancel
Save