small fixes to metadata tags
This commit is contained in:
parent
4ffe9c6e42
commit
192aeb320c
@ -1,11 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}
|
||||
{{ article.title }} - {{ SITENAME }}
|
||||
{% endblock %}
|
||||
{% block metadesc %}
|
||||
{% if article.summary %}{{ article.summary | e }}{% else %}An Article in {{ SITETAG }}: {{ article.title }}{% endif %}
|
||||
{% endblock %}
|
||||
{% block title %}{{ article.title }} – {{ SITENAME }}{% endblock %}
|
||||
{% block metadesc %}{% if article.summary %}{{ article.summary | e }}{% else %}An Article in {{ SITETAG }}: {{ article.title }}{% endif %}{% endblock %}
|
||||
|
||||
{% block content_all %}
|
||||
<article>
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
<head>
|
||||
<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" />
|
||||
{% include "includes/favicon.html" %}
|
||||
<meta name="description" content="{% block metadesc %}{{ DEFAULT_METADESC|e }}{% endblock %}" />
|
||||
|
||||
@ -1,23 +1,23 @@
|
||||
<!-- basic svg -->
|
||||
<link rel="icon" type="image/svg+xml" href="/images/favicon/favicon.svg">
|
||||
<link rel="icon" type="image/svg+xml" href="/images/favicon/favicon.svg" />
|
||||
<!-- generics -->
|
||||
<link rel="icon" href="/images/favicon/favicon-16.png" sizes="16x16">
|
||||
<link rel="icon" href="/images/favicon/favicon-32.png" sizes="32x32">
|
||||
<link rel="icon" href="/images/favicon/favicon-48.png" sizes="48x48">
|
||||
<link rel="icon" href="/images/favicon/favicon-128.png" sizes="128x128">
|
||||
<link rel="icon" href="/images/favicon/favicon-192.png" sizes="192x192">
|
||||
<link rel="icon" href="/images/favicon/favicon-16.png" sizes="16x16" />
|
||||
<link rel="icon" href="/images/favicon/favicon-32.png" sizes="32x32" />
|
||||
<link rel="icon" href="/images/favicon/favicon-48.png" sizes="48x48" />
|
||||
<link rel="icon" href="/images/favicon/favicon-128.png" sizes="128x128" />
|
||||
<link rel="icon" href="/images/favicon/favicon-192.png" sizes="192x192" />
|
||||
<!-- .ico files -->
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
|
||||
<!-- Android -->
|
||||
<link rel="shortcut icon" href="/images/favicon/favicon-192.png" sizes="192x192">
|
||||
<link rel="shortcut icon" href="/images/favicon/favicon-192.png" sizes="192x192" />
|
||||
<link rel="manifest" href="/images/favicon/manifest.json" />
|
||||
<!-- iOS -->
|
||||
<link rel="apple-touch-icon" href="/images/favicon/favicon-76.png" sizes="76x76">
|
||||
<link rel="apple-touch-icon" href="/images/favicon/favicon-120.png" sizes="120x120">
|
||||
<link rel="apple-touch-icon" href="/images/favicon/favicon-152.png" sizes="152x152">
|
||||
<link rel="apple-touch-icon" href="/images/favicon/favicon-167.png" sizes="167x167">
|
||||
<link rel="apple-touch-icon" href="/images/favicon/favicon-180.png" sizes="180x180">
|
||||
<link rel="mask-icon" href="/images/favicon/favicon.svg" color="brown">
|
||||
<link rel="apple-touch-icon" href="/images/favicon/favicon-76.png" sizes="76x76" />
|
||||
<link rel="apple-touch-icon" href="/images/favicon/favicon-120.png" sizes="120x120" />
|
||||
<link rel="apple-touch-icon" href="/images/favicon/favicon-152.png" sizes="152x152" />
|
||||
<link rel="apple-touch-icon" href="/images/favicon/favicon-167.png" sizes="167x167" />
|
||||
<link rel="apple-touch-icon" href="/images/favicon/favicon-180.png" sizes="180x180" />
|
||||
<link rel="mask-icon" href="/images/favicon/favicon.svg" color="brown" />
|
||||
<!-- Windows -->
|
||||
<meta name="msapplication-config" content="/browserconfig.xml" />
|
||||
@ -1,8 +1,6 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}
|
||||
{{ page.title }} – {{ SITENAME }}
|
||||
{% endblock %}
|
||||
{% block title %}{{ page.title }} – {{ SITENAME }}{% endblock %}
|
||||
{% block metadesc %}
|
||||
{% if page.summary %}{{ page.summary|e }}{% else %}{{ super() }}{% endif %}
|
||||
{% endblock %}
|
||||
|
||||
@ -1,11 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}
|
||||
Schlagwort: {{ tag }} - {{ SITENAME }}
|
||||
{% endblock %}
|
||||
{% block metadesc %}
|
||||
Alle Einträge zum Schlagwort '{{ tag }}'
|
||||
{% endblock %}
|
||||
{% block title %}Schlagwort: {{ tag }} – {{ SITENAME }}{% endblock %}
|
||||
{% block metadesc %}Alle Einträge zum Schlagwort '{{ tag }}'{% endblock %}
|
||||
|
||||
{% block content_all %}
|
||||
{% block content_header %}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user