fix: rm duplicate head, meta and body tags
This commit is contained in:
parent
5fd3bdb36a
commit
ee4b1f64b3
1 changed files with 2 additions and 17 deletions
|
@ -6,22 +6,11 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="{% if lang %}{{ lang }}{% else %}en{% endif %}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="referrer" content="no-referrer-when-downgrade">
|
||||
|
||||
<title>{% block title %}{{ title }} - {{ headline }} {% endblock title %}</title>
|
||||
<meta name="description" content="{{ description }}">
|
||||
|
||||
<link rel="stylesheet" href="{{ get_url(path="main.css", trailing_slash=false) }}">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>{{ title }}</title>
|
||||
<title>{% block title %}{{ title }} - {{ headline }} {% endblock title %}</title>
|
||||
<meta
|
||||
property="og:title"
|
||||
content="{{ description }}"
|
||||
|
@ -62,14 +51,10 @@
|
|||
"@context": "https://schema.org"
|
||||
}
|
||||
</script>
|
||||
<link rel="stylesheet" href="{{ get_url(path="main.css", trailing_slash=false) }}">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1><a href="{{ config.base_url }}">{{ title }}</a></h1>
|
||||
|
|
Loading…
Reference in a new issue