mirror of
https://github.com/LowderPlay/cheburcheck.git
synced 2026-09-26 08:18:03 +03:00
19 lines
850 B
Plaintext
19 lines
850 B
Plaintext
{% extends 'base' %}
|
|
{% import 'typography' as typography %}
|
|
|
|
{% macro metadata(title, description, image="https://cheburcheck.ru/og-cover.png", keywords, url="/") %}
|
|
<title>{{ title }} - Cheburcheck</title>
|
|
<meta name="description" content="{{ description }}">
|
|
<meta name="keywords" content="проверка домена, заблокирован ли сайт, Роскомнадзор, чебурнет, cdn, блокировки, {{ keywords }}">
|
|
<meta property="og:title" content="{{ title }}">
|
|
<meta property="og:description" content="{{ description }}">
|
|
<meta property="og:url" content="https://cheburcheck.ru{{ url }}">
|
|
<meta property="og:image" content="{{ image }}">
|
|
{% endmacro metadata %}
|
|
|
|
{% block content %}
|
|
<div class="page-container">
|
|
{% block page_text %}{% endblock %}
|
|
</div>
|
|
{% endblock content %}
|