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>
|
<!DOCTYPE html>
|
||||||
<html lang="{% if lang %}{{ lang }}{% else %}en{% endif %}">
|
<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>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<title>{{ title }}</title>
|
<title>{% block title %}{{ title }} - {{ headline }} {% endblock title %}</title>
|
||||||
<meta
|
<meta
|
||||||
property="og:title"
|
property="og:title"
|
||||||
content="{{ description }}"
|
content="{{ description }}"
|
||||||
|
@ -62,14 +51,10 @@
|
||||||
"@context": "https://schema.org"
|
"@context": "https://schema.org"
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
<link rel="stylesheet" href="{{ get_url(path="main.css", trailing_slash=false) }}">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
|
||||||
<body>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<header>
|
<header>
|
||||||
<h1><a href="{{ config.base_url }}">{{ title }}</a></h1>
|
<h1><a href="{{ config.base_url }}">{{ title }}</a></h1>
|
||||||
|
|
Loading…
Reference in a new issue