chore: Rename includable templates

This commit is contained in:
Sweetbread 2025-01-27 21:46:53 +03:00
parent ec1ff82c39
commit 915da1acc8
7 changed files with 12 additions and 12 deletions

View File

@ -1,11 +1,11 @@
<!DOCTYPE html>
<html lang="ru">
{% include 'head.html' %}
{% include '_head.html' %}
<body>
{% include 'header.html' %}
{% include '_header.html' %}
{% include 'sidenav.html' %}
{% include '_sidenav.html' %}
<div id="popup-overlay">
<div id="popup">

View File

@ -1,11 +1,11 @@
<!DOCTYPE html>
<html lang="ru">
{% include 'head.html' %}
{% include '_head.html' %}
<body>
{% include 'header.html' %}
{% include '_header.html' %}
{% include 'sidenav.html' %}
{% include '_sidenav.html' %}
<img id="help" src="{{ url_for('static', filename='imgs/icon.png') }}">
</body>
</html>

View File

@ -1,8 +1,8 @@
<!DOCTYPE html>
<html lang="ru">
{% include 'head.html' %}
{% include '_head.html' %}
<body>
{% include 'header.html' %}
{% include '_header.html' %}
<div class="container">
<div class="info1 divv" >

View File

@ -1,9 +1,9 @@
<!DOCTYPE html>
<html lang="ru">
{% include 'head.html' %}
{% include '_head.html' %}
<body>
{% include 'header.html' %}
{% include '_header.html' %}
<div class="container">
@ -20,7 +20,7 @@
</div>
</div>
{% include 'sidenav.html' %}
{% include '_sidenav.html' %}
{% if error %}
<div id="error">
<p>{{ error }}</p>