twig syntax fix

This commit is contained in:
2026-06-11 21:05:38 +05:00
parent 99cf811693
commit aba56d3373
2 changed files with 3 additions and 4 deletions

View File

@@ -5,8 +5,6 @@
<head> <head>
{% use '/themes/default/head.html' with meta as head_meta, css as head_css %} {% use '/themes/default/head.html' with meta as head_meta, css as head_css %}
<title>{% block title %}{% endblock %} @Кодорвань</title>
{{ block('head_meta') }} {{ block('head_meta') }}
{% block meta %} {% block meta %}
{% endblock %} {% endblock %}

View File

@@ -3,9 +3,10 @@
<link rel="canonical" href="{{ uri ?? (domain ? ('https://' ~ domain) : '') }}"> <link rel="canonical" href="{{ uri ?? (domain ? ('https://' ~ domain) : '') }}">
<title>{% if not empty title %}{{ title }} @Кодорвань{% else %}Кодорвань{% endif %}</title> <title>{% if title is not empty %}{{ title }} @Кодорвань{% else %}Кодорвань{% endif %}</title>
<meta name="application-name" content="Кодорвань"> <meta name="application-name" content="Кодорвань">
<meta name="description" content="{% if not empty description %}{{ description }}{% else %}Чистый код, авангардный дизайн, крепкий бустинг и юридическая броня! Заходи на сайт и посчитай проект за 2 минуты! Рвём шаблоны!{% endif %}"> <meta name="description" content="{% if description is not empty %}{{ description }}{% else %}Чистый код, авангардный дизайн, крепкий бустинг и юридическая броня! Заходи на сайт и посчитай проект за 2 минуты! Рвём шаблоны!{% endif %}">
<meta name="author" content="Арсен Мирзаев Татьяно-Мурадович"> <meta name="author" content="Арсен Мирзаев Татьяно-Мурадович">
<meta name="robots" content="index, follow"> <meta name="robots" content="index, follow">