meta names
This commit is contained in:
SDE
2023-11-29 17:50:59 +03:00
parent 446af5e438
commit 16e7ea3109
7 changed files with 78 additions and 49 deletions

View File

@@ -1,9 +1,9 @@
{% extends "tb_base.html" %}
{% block content %}
<div class="wrapper_name_art">{{ art.name }}</div>
{% if art.description != none %}
<div>{{ art.description }}</div>
<div class="wrapper_name_art">{{ page.name }}</div>
{% if page.description != none %}
<div>{{ page.description }}</div>
{% endif %}
<div class="wrapper_text_art">{{ art.text|safe }}</div>
<div class="wrapper_text_art">{{ page.text|safe }}</div>
{% endblock %}