-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,32 @@ | ||
{% extends 'base/base.html' %} | ||
{% load static %} | ||
{% block title %} | ||
Главная страница | ||
{% endblock %} | ||
{% block content %} | ||
{% include 'main/home/table.html' with table_head=table_head table_data=table_data %} | ||
<div style="display: flex; flex-direction: column; height: 100vh; margin: 0;"> | ||
<h1 align="center">Добро пожаловать!</h1> | ||
|
||
<div style="flex: 1; display: flex; justify-content: flex-start; align-items: center;"> | ||
<table width="100%" height="100%"> | ||
<tr> | ||
<td width="80%" valign="top"> | ||
<section> | ||
{% comment %} Свободное место например под вывод информации из БД или тп.{% endcomment %} | ||
</section> | ||
</td> | ||
<td width="20%"> | ||
<div align="center"> | ||
<img src="{% static 'img/logo.png' %}" alt="Логотип" width="200" height="200"> | ||
</div> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
|
||
<div style="margin-top: auto; text-align: center; margin-bottom: 10px;"> | ||
<p>Для поиска игроков воспользуйтесь поиском сверху.</p> | ||
</div> | ||
</div> | ||
{% endblock %} |