0.0.1
add new page levels
This commit is contained in:
22
templates/blocks/header.html
Normal file
22
templates/blocks/header.html
Normal file
@@ -0,0 +1,22 @@
|
||||
{% load static %}
|
||||
|
||||
<div class="header">
|
||||
<div class="cut-width">
|
||||
<div class="header-part-left">
|
||||
<a href="#" class="Header-Logo-cont">
|
||||
<img src="{% static "images/logos/logo_header.svg" %}" height="52">
|
||||
</a>
|
||||
<div class="header-text">
|
||||
<a href="#">УРОВНИ</a>
|
||||
<a href="#">ОБУЧЕНИЕ</a>
|
||||
<a href="#">ПРОФИЛЬ</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header-part-right">
|
||||
<a class="btn-exit-a" href="#">
|
||||
<span class="btn-exit-header">ВЫХОД</span>
|
||||
<img class="user-icon" src="{% static "images/icons/user_icon.svg" %}" height="79">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
8
templates/pages/choose_table.html
Normal file
8
templates/pages/choose_table.html
Normal file
@@ -0,0 +1,8 @@
|
||||
{% extends "tb_base.html" %}
|
||||
{% load static %}
|
||||
{% block CONTENT %}
|
||||
<h1>Выберите уровень</h1>
|
||||
<div class="block-levels">
|
||||
{% include "widgets/w_level.html" %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
19
templates/tb_base.html
Normal file
19
templates/tb_base.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% load static %}
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>FairPlay</title>
|
||||
<link rel="stylesheet" href="{% static "css/firegame_css.css"%}">
|
||||
</head>
|
||||
<body>
|
||||
{% include "blocks/header.html" %}
|
||||
<div class="cut-width">
|
||||
{% block CONTENT %}
|
||||
{% endblock %}
|
||||
</div>
|
||||
<div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
13
templates/widgets/w_level.html
Normal file
13
templates/widgets/w_level.html
Normal file
@@ -0,0 +1,13 @@
|
||||
{% load static %}
|
||||
<div class="level-cont">
|
||||
<div class="level-cont-1">
|
||||
<div class="level-cont-2">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="container-content-level">
|
||||
<h2>
|
||||
УРОВЕНЬ 1 <br/> Лёгкий
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user