2020-05-10 21:57:11 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block extrahead %}
|
|
|
|
{% set title = config.site_name %}
|
|
|
|
{% if page and page.title and not page.is_homepage %}
|
|
|
|
{% set title = config.site_name ~ " - " ~ page.title | striptags %}
|
|
|
|
{% endif %}
|
2021-05-27 13:50:24 +02:00
|
|
|
{% set image = config.site_url ~ '/static/card.png' %}
|
2020-05-10 21:57:11 +02:00
|
|
|
<meta property="og:type" content="website">
|
|
|
|
<meta property="og:title" content="{{ title }}">
|
|
|
|
<meta property="og:description" content="{{ config.site_description }}">
|
|
|
|
<meta property="og:url" content="{{ page.canonical_url }}">
|
|
|
|
<meta property="og:image" content="{{ image }}">
|
|
|
|
<meta property="og:image:type" content="image/png">
|
|
|
|
<meta property="og:image:width" content="1200">
|
|
|
|
<meta property="og:image:height" content="630">
|
|
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
|
|
<meta name="twitter:site" content="@goreleaser">
|
|
|
|
<meta name="twitter:creator" content="@goreleaser">
|
|
|
|
<meta name="twitter:title" content="{{ title }}">
|
|
|
|
<meta name="twitter:description" content="{{ config.site_description }}">
|
|
|
|
<meta name="twitter:image" content="{{ image }}">
|
|
|
|
{% endblock %}
|
2021-05-26 04:01:56 +02:00
|
|
|
{% block analytics %}
|
|
|
|
<script async defer data-domain="goreleaser.com" src="https://plausible.io/js/plausible.js"></script>
|
|
|
|
{% endblock %}
|