fix new logic to calculator with required and optional subjects
This commit is contained in:
parent
08bc93ad2d
commit
b37a1225c4
|
@ -35,14 +35,23 @@ class CalculatorController extends Controller
|
||||||
return $carry;
|
return $carry;
|
||||||
}, []);
|
}, []);
|
||||||
$result = collect($filteredDirectionIds)
|
$result = collect($filteredDirectionIds)
|
||||||
->filter(fn ($subjectTypes) => !array_diff($subjectTypes[1], $calcultatorSubjects))
|
->filter(function ($subjectTypes) use ($calcultatorSubjects) {
|
||||||
|
$requiredSbjects = $subjectTypes[1];
|
||||||
|
return array_reduce($requiredSbjects, function ($acc, $requiredSbject) use ($calcultatorSubjects) {
|
||||||
|
if (!in_array($requiredSbject, $calcultatorSubjects)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return $acc;
|
||||||
|
}, true);
|
||||||
|
|
||||||
|
})
|
||||||
->filter(function ($subjectTypes) use ($calcultatorSubjects) {
|
->filter(function ($subjectTypes) use ($calcultatorSubjects) {
|
||||||
$optionalSubjectsInCalculator = collect($subjectTypes[2])
|
$optionalSubjectsInCalculator = collect($subjectTypes[2])
|
||||||
->filter(fn ($optionalSubject) => in_array($optionalSubject, $calcultatorSubjects));
|
->filter(fn ($optionalSubject) => in_array($optionalSubject, $calcultatorSubjects));
|
||||||
return $optionalSubjectsInCalculator->count() !== 0;
|
return $optionalSubjectsInCalculator->count() !== 0;
|
||||||
})->map(fn ($subjectTypes, $directionId) => $directionId)
|
})->map(fn ($subjectTypes, $directionId) => $directionId)
|
||||||
;
|
;
|
||||||
// dd($result);
|
dd($result);
|
||||||
$directions = Direction::whereIn('id', $result)->get();
|
$directions = Direction::whereIn('id', $result)->get();
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
@extends('layouts.new-design-layout')
|
@extends('layouts.new-design-layout')
|
||||||
@section('content')
|
@section('content')
|
||||||
<style>
|
<style>
|
||||||
|
@ -9,6 +8,7 @@
|
||||||
src: url({{ URL::to('fonts/Geologica/Geologica-Medium.ttf') }}) format("truetype");
|
src: url({{ URL::to('fonts/Geologica/Geologica-Medium.ttf') }}) format("truetype");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
|
|
||||||
font-family: "Geologica-ExtraLight";
|
font-family: "Geologica-ExtraLight";
|
||||||
|
@ -17,6 +17,7 @@
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
|
|
||||||
font-family: "Geologica-Light";
|
font-family: "Geologica-Light";
|
||||||
|
@ -25,6 +26,7 @@
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -32,45 +34,50 @@
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
{{--background-image: url({{ URL::to('img/front-page/fon1_blok.png') }});--}}
|
{{--background-image: url({{ URL::to('img/front-page/fon1_blok.png') }});--}}
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
|
|
||||||
font-family: "Geologica-Medium"; !important;
|
font-family: "Geologica-Medium";
|
||||||
|
!important;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: unset;
|
color: unset;
|
||||||
}
|
}
|
||||||
a:hover{
|
|
||||||
|
a:hover {
|
||||||
color: unset;
|
color: unset;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.gradient-text{
|
.gradient-text {
|
||||||
background-image: url({{ URL::to('img/front-page/bakalavr-special/fon1_blok.png') }});
|
background-image: url({{ URL::to('img/front-page/bakalavr-special/fon1_blok.png') }});
|
||||||
-webkit-background-clip: text;
|
-webkit-background-clip: text;
|
||||||
-webkit-text-fill-color: transparent;
|
-webkit-text-fill-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button1{
|
.button1 {
|
||||||
background: linear-gradient(white, white) padding-box, linear-gradient(to right,#0d6efd , #4f96ff) border-box;
|
background: linear-gradient(white, white) padding-box, linear-gradient(to right, #0d6efd, #4f96ff) border-box;
|
||||||
border-radius: 11px;
|
border-radius: 11px;
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.hover1:hover {
|
.hover1:hover {
|
||||||
transform: scale(1.1);
|
transform: scale(1.1);
|
||||||
transition: all .3s ease-in-out;
|
transition: all .3s ease-in-out;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.hover2:hover {
|
.hover2:hover {
|
||||||
color: #d3d3d3;
|
color: #d3d3d3;
|
||||||
transition: all .4s ease-in-out;
|
transition: all .4s ease-in-out;
|
||||||
|
@ -79,17 +86,19 @@
|
||||||
/*padding: 5px 8px;*/
|
/*padding: 5px 8px;*/
|
||||||
/*border-color: #ffffff;*/
|
/*border-color: #ffffff;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.hover3:hover {
|
.hover3:hover {
|
||||||
|
|
||||||
border: unset;
|
border: unset;
|
||||||
background-image: url({{ URL::to('img/front-page/bakalavr-special/fon1_blok.png') }});!important;
|
background-image: url({{ URL::to('img/front-page/bakalavr-special/fon1_blok.png') }});
|
||||||
|
!important;
|
||||||
|
|
||||||
|
|
||||||
transition: all .3s ease-in-out;
|
transition: all .3s ease-in-out;
|
||||||
|
|
||||||
}
|
}
|
||||||
.hover3:hover div{
|
|
||||||
|
.hover3:hover div {
|
||||||
-webkit-background-clip: unset;
|
-webkit-background-clip: unset;
|
||||||
-webkit-text-fill-color: unset;
|
-webkit-text-fill-color: unset;
|
||||||
color: white;
|
color: white;
|
||||||
|
@ -158,17 +167,21 @@
|
||||||
.checkbox1 .checkmark:after {
|
.checkbox1 .checkmark:after {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
td {
|
td {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
|
|
||||||
}
|
}
|
||||||
tr{
|
|
||||||
|
tr {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
#faculty {
|
#faculty {
|
||||||
width: 40%;
|
width: 40%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* width */
|
/* width */
|
||||||
.scroll-1::-webkit-scrollbar {
|
.scroll-1::-webkit-scrollbar {
|
||||||
width: 15px;
|
width: 15px;
|
||||||
|
@ -207,59 +220,73 @@
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
<script
|
<script
|
||||||
src="{{ URL::to('https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js') }}" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous">
|
src="{{ URL::to('https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js') }}"
|
||||||
|
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous">
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<header>
|
<header>
|
||||||
<div class="container-fluid position-relative " style="background-image: url({{ URL::to('img/front-page/bakalavr-special/fon1_blok.png') }}); background-repeat: no-repeat; background-attachment: fixed;">
|
<div class="container-fluid position-relative "
|
||||||
<div class=" d-none d-xl-flex justify-content-end align-items-end position-absolute float-end z-1 " style="height: 100%; " >
|
style="background-image: url({{ URL::to('img/front-page/bakalavr-special/fon1_blok.png') }}); background-repeat: no-repeat; background-attachment: fixed;">
|
||||||
<div style="width: 60%">
|
<div class=" d-none d-xl-flex justify-content-end align-items-end position-absolute float-end z-1 "
|
||||||
<img class="img-fluid float-end " src="{{ URL::to('img/front-page/bakalavr-special/professor.png') }}" alt="">
|
style="height: 100%; ">
|
||||||
</div>
|
<div style="width: 60%">
|
||||||
</div>
|
<img class="img-fluid float-end "
|
||||||
|
src="{{ URL::to('img/front-page/bakalavr-special/professor.png') }}" alt="">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="ms-0 ms-md-5 ">
|
<div class="ms-0 ms-md-5 ">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-3 col-12 d-none d-xl-flex justify-content-start align-items-center mt-2">
|
<div class="col-lg-3 col-12 d-none d-xl-flex justify-content-start align-items-center mt-2">
|
||||||
<div class=" " style="width: 30%">
|
<div class=" " style="width: 30%">
|
||||||
<img class="img-fluid float-end " src="{{ URL::to('img/front-page/logo-white.png') }}" alt="">
|
<img class="img-fluid float-end " src="{{ URL::to('img/front-page/logo-white.png') }}"
|
||||||
|
alt="">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-xl-8 col-12 ">
|
<div class="col-xl-8 col-12 ">
|
||||||
<div class=" me-0 me-md-2 row d-lg-flex justify-content-end border-bottom border-white ">
|
<div class=" me-0 me-md-2 row d-lg-flex justify-content-end border-bottom border-white ">
|
||||||
|
|
||||||
<div class="col-12 col-xl-8 d-inline mt-5 d-lg-flex justify-content-end z-2 position-relative pb-3" style="font-family: Geologica-Light">
|
<div
|
||||||
|
class="col-12 col-xl-8 d-inline mt-5 d-lg-flex justify-content-end z-2 position-relative pb-3"
|
||||||
|
style="font-family: Geologica-Light">
|
||||||
|
|
||||||
<a href="#" class="col-auto pe-lg-3 text-white text-sm-start" style="font-size: 20px;font-weight: 400;line-height: 29px;">
|
<a href="#" class="col-auto pe-lg-3 text-white text-sm-start"
|
||||||
<div class="hover2"> Колл-центр: 8 800 550-23-01 </div>
|
style="font-size: 20px;font-weight: 400;line-height: 29px;">
|
||||||
|
<div class="hover2"> Колл-центр: 8 800 550-23-01</div>
|
||||||
</a>
|
</a>
|
||||||
<a href="#" class="col-auto px-lg-3 text-white text-sm-start " style="font-size: 20px;font-weight: 400;line-height: 29px;">
|
<a href="#" class="col-auto px-lg-3 text-white text-sm-start "
|
||||||
<div class="hover2"> Почта: info@mkgtu.ru </div>
|
style="font-size: 20px;font-weight: 400;line-height: 29px;">
|
||||||
|
<div class="hover2"> Почта: info@mkgtu.ru</div>
|
||||||
</a>
|
</a>
|
||||||
<a href="#" class="col-auto px-lg-3 text-white text-sm-start " style="font-size: 20px;font-weight: 400;line-height: 29px;">
|
<a href="#" class="col-auto px-lg-3 text-white text-sm-start "
|
||||||
|
style="font-size: 20px;font-weight: 400;line-height: 29px;">
|
||||||
<div class="hover2"> Все контакты</div>
|
<div class="hover2"> Все контакты</div>
|
||||||
</a>
|
</a>
|
||||||
{{-- <a href="#" class="col-auto px-lg-3 text-white text-sm-start " style="font-size: 20px;font-weight: 400;line-height: 29px;">--}}
|
{{-- <a href="#" class="col-auto px-lg-3 text-white text-sm-start " style="font-size: 20px;font-weight: 400;line-height: 29px;">--}}
|
||||||
{{-- <div class="hover2"> RU </div>--}}
|
{{-- <div class="hover2"> RU </div>--}}
|
||||||
{{-- </a>--}}
|
{{-- </a>--}}
|
||||||
{{-- <img id="specialButton" style="cursor:pointer; width: 25px; height: 25px;" src="{{ URL::to('img/front-page/eye.png') }}" alt="ВЕРСИЯ ДЛЯ СЛАБОВИДЯЩИХ" title="ВЕРСИЯ ДЛЯ СЛАБОВИДЯЩИХ" />--}}
|
{{-- <img id="specialButton" style="cursor:pointer; width: 25px; height: 25px;" src="{{ URL::to('img/front-page/eye.png') }}" alt="ВЕРСИЯ ДЛЯ СЛАБОВИДЯЩИХ" title="ВЕРСИЯ ДЛЯ СЛАБОВИДЯЩИХ" />--}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class=" me-0 me-md-2 row d-lg-flex justify-content-end ">
|
<div class=" me-0 me-md-2 row d-lg-flex justify-content-end ">
|
||||||
|
|
||||||
<div class="col-12 col-xl-8 d-inline mt-3 d-lg-flex justify-content-end z-2 position-relative " style="font-family: Geologica-Light">
|
<div
|
||||||
|
class="col-12 col-xl-8 d-inline mt-3 d-lg-flex justify-content-end z-2 position-relative "
|
||||||
|
style="font-family: Geologica-Light">
|
||||||
|
|
||||||
<a href="{{ URL::to('/') }}" class="col-auto pe-lg-3 text-white text-sm-start" style="font-size: 20px;font-weight: 400;line-height: 29px;">
|
<a href="{{ URL::to('/') }}" class="col-auto pe-lg-3 text-white text-sm-start"
|
||||||
<div class="hover2"> Бакалавриат / Специалитет </div>
|
style="font-size: 20px;font-weight: 400;line-height: 29px;">
|
||||||
|
<div class="hover2"> Бакалавриат / Специалитет</div>
|
||||||
</a>
|
</a>
|
||||||
<a href="{{ URL::to('magistr') }}" class="col-auto px-lg-3 text-white text-sm-start " style="font-size: 20px;font-weight: 400;line-height: 29px;">
|
<a href="{{ URL::to('magistr') }}" class="col-auto px-lg-3 text-white text-sm-start "
|
||||||
<div class="hover2"> Магистратура </div>
|
style="font-size: 20px;font-weight: 400;line-height: 29px;">
|
||||||
|
<div class="hover2"> Магистратура</div>
|
||||||
</a>
|
</a>
|
||||||
<a href="{{ URL::to('inostran') }}" class="col-auto px-lg-3 text-white text-sm-start " style="font-size: 20px;font-weight: 400;line-height: 29px;">
|
<a href="{{ URL::to('inostran') }}" class="col-auto px-lg-3 text-white text-sm-start "
|
||||||
|
style="font-size: 20px;font-weight: 400;line-height: 29px;">
|
||||||
<div class="hover2"> Иностранным абитуриентам</div>
|
<div class="hover2"> Иностранным абитуриентам</div>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
@ -270,24 +297,27 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 text-white display-1 my-5 text-center text-md-start" style=" font-weight: 900; letter-spacing: 0em; ">
|
<div class="col-12 text-white display-1 my-5 text-center text-md-start"
|
||||||
|
style=" font-weight: 900; letter-spacing: 0em; ">
|
||||||
ПОСТУПАЙ В МГТУ
|
ПОСТУПАЙ В МГТУ
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="fs-3 col-12 text-white mb-3 text-center text-md-start opacity-75 " style=" letter-spacing: 0em; ">
|
<div class="fs-3 col-12 text-white mb-3 text-center text-md-start opacity-75 "
|
||||||
|
style=" letter-spacing: 0em; ">
|
||||||
75 студенческих объединений
|
75 студенческих объединений
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="display-5 col-12 text-white mb-3 text-center text-md-start " style=" font-weight: 700; letter-spacing: 0em; ">
|
<div class="display-5 col-12 text-white mb-3 text-center text-md-start "
|
||||||
|
style=" font-weight: 700; letter-spacing: 0em; ">
|
||||||
3367 БЮДЖЕТНЫХ МЕСТ
|
3367 БЮДЖЕТНЫХ МЕСТ
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="fs-3 col-12 text-white mb-3 text-center text-md-start opacity-75" style=" letter-spacing: 0em; ">
|
<div class="fs-3 col-12 text-white mb-3 text-center text-md-start opacity-75"
|
||||||
|
style=" letter-spacing: 0em; ">
|
||||||
300 образовательных программ
|
300 образовательных программ
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -295,14 +325,20 @@
|
||||||
<br><br><br><br><br><br><br>
|
<br><br><br><br><br><br><br>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class=" mt-5 row d-lg-inline d-flex justify-content-center position-relative " >
|
<div class=" mt-5 row d-lg-inline d-flex justify-content-center position-relative ">
|
||||||
<a href="#" class="hover1 col-auto text-white position-relative z-2 mb-3 mx-3 text-center text-md-start shadow py-3 px-4 justify-content-center d-inline-flex" style=" background: linear-gradient(#56CCF2, #56CCF200); border-radius: 20px; letter-spacing: 0; ">
|
<a href="#"
|
||||||
|
class="hover1 col-auto text-white position-relative z-2 mb-3 mx-3 text-center text-md-start shadow py-3 px-4 justify-content-center d-inline-flex"
|
||||||
|
style=" background: linear-gradient(#56CCF2, #56CCF200); border-radius: 20px; letter-spacing: 0; ">
|
||||||
Личный кабинет
|
Личный кабинет
|
||||||
</a>
|
</a>
|
||||||
<a href="#" class="hover1 col-auto text-white position-relative z-2 mb-3 mx-3 text-center text-md-start shadow py-3 px-4 justify-content-center d-inline-flex" style=" background: linear-gradient(#56CCF2, #56CCF200); border-radius: 20px; letter-spacing: 0; ">
|
<a href="#"
|
||||||
|
class="hover1 col-auto text-white position-relative z-2 mb-3 mx-3 text-center text-md-start shadow py-3 px-4 justify-content-center d-inline-flex"
|
||||||
|
style=" background: linear-gradient(#56CCF2, #56CCF200); border-radius: 20px; letter-spacing: 0; ">
|
||||||
День открытых дверей
|
День открытых дверей
|
||||||
</a>
|
</a>
|
||||||
<a href="#" class=" hover1 col-auto text-white position-relative z-2 mb-3 mx-3 text-center text-md-start shadow py-3 px-4 justify-content-center d-inline-flex" style=" background: linear-gradient(#56CCF2, #56CCF200); border-radius: 20px; letter-spacing: 0; ">
|
<a href="#"
|
||||||
|
class=" hover1 col-auto text-white position-relative z-2 mb-3 mx-3 text-center text-md-start shadow py-3 px-4 justify-content-center d-inline-flex"
|
||||||
|
style=" background: linear-gradient(#56CCF2, #56CCF200); border-radius: 20px; letter-spacing: 0; ">
|
||||||
Твои возможности
|
Твои возможности
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -313,11 +349,13 @@
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<div style="background-image: url({{ URL::to('img/front-page/bakalavr-special/fon3_blok.png') }}); background-repeat: no-repeat; background-attachment: fixed;">
|
<div
|
||||||
|
style="background-image: url({{ URL::to('img/front-page/bakalavr-special/fon3_blok.png') }}); background-repeat: no-repeat; background-attachment: fixed;">
|
||||||
|
|
||||||
<div class="container-fluid ms-sm-5 py-5" >
|
<div class="container-fluid ms-sm-5 py-5">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="display-5 col-12 mb-3 text-center text-md-start " style="background-image: url({{ URL::to('img/front-page/bakalavr-special/fon1_blok.png') }}); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; letter-spacing: 0em; ">
|
<div class="display-5 col-12 mb-3 text-center text-md-start "
|
||||||
|
style="background-image: url({{ URL::to('img/front-page/bakalavr-special/fon1_blok.png') }}); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; letter-spacing: 0em; ">
|
||||||
ПЕРЕЧЕНЬ ФАКУЛЬТЕТОВ
|
ПЕРЕЧЕНЬ ФАКУЛЬТЕТОВ
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -328,17 +366,22 @@
|
||||||
<div class="mt-xl-5 col-xxl-4 col-md-6 col-10 ">
|
<div class="mt-xl-5 col-xxl-4 col-md-6 col-10 ">
|
||||||
|
|
||||||
<!-- Button trigger modal -->
|
<!-- Button trigger modal -->
|
||||||
<button type="button" data-bs-toggle="modal" data-bs-target="#exampleModal-{{ $faculty->id }}" class=" col-md-11 col-12 shadow-lg p-2 ps-md-3 mt-3 d-flex justify-content-start align-items-center hover1 " style="background-color: #ffffff; border-radius: 15px; border: unset;">
|
<button type="button" data-bs-toggle="modal" data-bs-target="#exampleModal-{{ $faculty->id }}"
|
||||||
<img class=" " style="width: 108px; height: auto " src="{{ URL::to('img/faculties/5.png') }}" alt="">
|
class=" col-md-11 col-12 shadow-lg p-2 ps-md-3 mt-3 d-flex justify-content-start align-items-center hover1 "
|
||||||
<span class="ms-xl-5 ms-2 z-3 gradient-text text-start" > {{ $faculty->name }}</span>
|
style="background-color: #ffffff; border-radius: 15px; border: unset;">
|
||||||
|
<img class=" " style="width: 108px; height: auto "
|
||||||
|
src="{{ URL::to('img/faculties/5.png') }}" alt="">
|
||||||
|
<span class="ms-xl-5 ms-2 z-3 gradient-text text-start"> {{ $faculty->name }}</span>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<!-- Modal -->
|
<!-- Modal -->
|
||||||
<div class="modal fade" id="exampleModal-{{ $faculty->id }}" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
|
<div class="modal fade" id="exampleModal-{{ $faculty->id }}" tabindex="-1"
|
||||||
<div class="modal-dialog modal-xl" >
|
aria-labelledby="exampleModalLabel" aria-hidden="true">
|
||||||
<div class="modal-content" > <!--style="border-radius: 30px;"-->
|
<div class="modal-dialog modal-xl">
|
||||||
|
<div class="modal-content"> <!--style="border-radius: 30px;"-->
|
||||||
<div class="modal-header d-flex justify-content-center">
|
<div class="modal-header d-flex justify-content-center">
|
||||||
<img class="" style="width: 108px; height: auto " src="{{ URL::to('img/faculties/5.png') }}" alt="">
|
<img class="" style="width: 108px; height: auto "
|
||||||
|
src="{{ URL::to('img/faculties/5.png') }}" alt="">
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -347,15 +390,17 @@
|
||||||
<div class="modal-body d-flex justify-content-center">
|
<div class="modal-body d-flex justify-content-center">
|
||||||
<div class="col-11">
|
<div class="col-11">
|
||||||
<p class="fs-5">Основная информация</p>
|
<p class="fs-5">Основная информация</p>
|
||||||
<p class="fs-6" style=" font-family: Geologica-ExtraLight; text-align: justify;"> {{ $faculty->description }}</p>
|
<p class="fs-6"
|
||||||
|
style=" font-family: Geologica-ExtraLight; text-align: justify;"> {{ $faculty->description }}</p>
|
||||||
<p class="fs-5">Специальности</p>
|
<p class="fs-5">Специальности</p>
|
||||||
<div class="table-responsive">
|
<div class="table-responsive">
|
||||||
<table class="table w-100 fs-6" style=" font-family: Geologica-ExtraLight">
|
<table class="table w-100 fs-6"
|
||||||
|
style=" font-family: Geologica-ExtraLight">
|
||||||
<tr>
|
<tr>
|
||||||
<th> Название </th>
|
<th> Название</th>
|
||||||
<th> Код специальности </th>
|
<th> Код специальности</th>
|
||||||
<th> Уровень образования </th>
|
<th> Уровень образования</th>
|
||||||
<th> Форма обучения </th>
|
<th> Форма обучения</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
@foreach($faculty->departments as $department)
|
@foreach($faculty->departments as $department)
|
||||||
|
@ -391,17 +436,21 @@
|
||||||
|
|
||||||
|
|
||||||
@endphp
|
@endphp
|
||||||
{{-- @dd($napr)--}}
|
{{-- @dd($napr)--}}
|
||||||
@foreach($napr as $el)
|
@foreach($napr as $el)
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<a class=" border border-dark rounded-3 p-2 hover1" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasScrolling-{{ $el['id'] }}" aria-controls="offcanvasScrolling" role="button">{{ $el['name'] }}</a>
|
<a class=" border border-dark rounded-3 p-2 hover1"
|
||||||
{{-- @dd($el)--}}
|
type="button" data-bs-toggle="offcanvas"
|
||||||
@php
|
data-bs-target="#offcanvasScrolling-{{ $el['id'] }}"
|
||||||
$DirectonHtmlBuilder = new DirectonHtmlBuilder($el);
|
aria-controls="offcanvasScrolling"
|
||||||
echo $DirectonHtmlBuilder->getHTML();
|
role="button">{{ $el['name'] }}</a>
|
||||||
@endphp
|
{{-- @dd($el)--}}
|
||||||
|
@php
|
||||||
|
$DirectonHtmlBuilder = new DirectonHtmlBuilder($el);
|
||||||
|
echo $DirectonHtmlBuilder->getHTML();
|
||||||
|
@endphp
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td> {{ $el['code'] }} </td>
|
<td> {{ $el['code'] }} </td>
|
||||||
|
@ -424,12 +473,10 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-danger" data-bs-dismiss="modal">Закрыть</button>
|
<button type="button" class="btn btn-danger" data-bs-dismiss="modal">Закрыть
|
||||||
|
</button>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -440,14 +487,16 @@
|
||||||
@endforeach
|
@endforeach
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style="background-image: url({{ URL::to('img/front-page/bakalavr-special/fon2_blok.png') }}); background-repeat: no-repeat; background-attachment: fixed;">
|
<div
|
||||||
|
style="background-image: url({{ URL::to('img/front-page/bakalavr-special/fon2_blok.png') }}); background-repeat: no-repeat; background-attachment: fixed;">
|
||||||
|
|
||||||
<div class="container-fluid ms-sm-5 pt-5">
|
<div class="container-fluid ms-sm-5 pt-5">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="display-5 col-12 text-white mb-3 text-center text-md-start " style=" font-weight: 700; letter-spacing: 0em; ">
|
<div class="display-5 col-12 text-white mb-3 text-center text-md-start "
|
||||||
|
style=" font-weight: 700; letter-spacing: 0em; ">
|
||||||
КАЛЬКУЛЯТОР ЕГЭ
|
КАЛЬКУЛЯТОР ЕГЭ
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -455,59 +504,68 @@
|
||||||
<div class="col-md-4 col-12 ">
|
<div class="col-md-4 col-12 ">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
<div class="text-white display-6" > Выберите предметы ЕГЭ</div>
|
<div class="text-white display-6"> Выберите предметы ЕГЭ</div>
|
||||||
<form class="text-white mt-4 fs-4 calcul" style=" font-family: Geologica-ExtraLight">
|
<form class="text-white mt-4 fs-4 calcul" style=" font-family: Geologica-ExtraLight">
|
||||||
<script src="{{ URL::to('https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js')}}"></script>
|
<script
|
||||||
|
src="{{ URL::to('https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js')}}"></script>
|
||||||
@foreach($subjects as $id => $name)
|
@foreach($subjects as $id => $name)
|
||||||
|
@if($name === "Русский язык" || $name === "Математика" )
|
||||||
@if($name == "Русский язык" || $name == "Математика" )
|
<label class="checkbox1"> {{ $name }}
|
||||||
<label class="checkbox1"> {{$name }}
|
<input class="checkbox_input_clear" type="checkbox" checked="checked"
|
||||||
<input class="checkbox_input_clear" type="checkbox" checked="checked" value="{{ $id }}" >
|
value="{{ $id }}">
|
||||||
<span class="checkmark"></span>
|
<span class="checkmark"></span>
|
||||||
</label>
|
</label>
|
||||||
@endif
|
@endif
|
||||||
@endforeach
|
@endforeach
|
||||||
<hr class="col-5">
|
<hr class="col-5">
|
||||||
@foreach($subjects as $id => $name)
|
@foreach($subjects as $id => $name)
|
||||||
@if($name !== "Русский язык" && $name !== "Математика" )
|
@if($name !== "Русский язык" && $name !== "Математика" )
|
||||||
<label class="checkbox1"> {{$name }}
|
<label class="checkbox1"> {{ $name }}
|
||||||
<input class="checkbox_input_clear" type="checkbox" value="{{ $id }}">
|
<input class="checkbox_input_clear" type="checkbox" value="{{ $id }}">
|
||||||
<span class="checkmark"></span>
|
<span class="checkmark"></span>
|
||||||
</label>
|
</label>
|
||||||
@endif
|
@endif
|
||||||
@endforeach
|
@endforeach
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
<div class="row d-md-block d-flex ms-md-3 justify-content-center">
|
<div class="row d-md-block d-flex ms-md-3 justify-content-center">
|
||||||
<a role="button" style="border-radius: 11px; font-family: Geologica-ExtraLight" class="hover3 unclearall mt-4 col-5 text-white p-2 border border-white d-inline-flex justify-content-center shadow"> Сбросить фильтр </a>
|
<a role="button" style="border-radius: 11px; font-family: Geologica-ExtraLight"
|
||||||
|
class="hover3 unclearall mt-4 col-5 text-white p-2 border border-white d-inline-flex justify-content-center shadow">
|
||||||
|
Сбросить фильтр </a>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<script>window.onload = function() {
|
<script>window.onload = function () {
|
||||||
$(".unclearall").click(function(){
|
$(".unclearall").click(function () {
|
||||||
|
|
||||||
$('input[type="checkbox"]').prop('checked',false);
|
$('input[type="checkbox"]').prop('checked', false);
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
})
|
})
|
||||||
$(".calcul input").click(function(){
|
$(".calcul input").click(function () {
|
||||||
$('.text-remove').remove();
|
$('.text-remove').remove();
|
||||||
let selected = []; let predmets='';
|
let selected = [];
|
||||||
$('.calcul input:checked').each(function() {
|
let predmets = '';
|
||||||
|
$('.calcul input:checked').each(function () {
|
||||||
selected.push(+$(this).val());
|
selected.push(+$(this).val());
|
||||||
predmets += $(this).val()+',';
|
predmets += $(this).val() + ',';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: "{{ route('calculator') }}",
|
||||||
|
dataType: 'json',
|
||||||
|
cache: false,
|
||||||
|
type: "POST",
|
||||||
|
data: 'ajx=get_napr&format=html&predmets=' + JSON.stringify(selected),
|
||||||
|
|
||||||
$.ajax({ url: "{{ route('calculator') }}", dataType: 'json', cache:false,type: "POST",data: 'ajx=get_napr&format=html&predmets='+JSON.stringify(selected),
|
success: function (data) {
|
||||||
|
|
||||||
success: function(data) {
|
|
||||||
$(".calcul_rez").html('<tr><th class="fs-5"> Факультет </th><th class="fs-5"> Направление </th><th class="fs-5" style="text-align: right;"> Период обучения (в годах)</th></tr>');
|
$(".calcul_rez").html('<tr><th class="fs-5"> Факультет </th><th class="fs-5"> Направление </th><th class="fs-5" style="text-align: right;"> Период обучения (в годах)</th></tr>');
|
||||||
$(".calcul_rez").append(data.html);
|
$(".calcul_rez").append(data.html);
|
||||||
|
|
||||||
}});
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -516,10 +574,14 @@
|
||||||
|
|
||||||
<div class="col-md-6 mt-md-0 mt-5 col-12">
|
<div class="col-md-6 mt-md-0 mt-5 col-12">
|
||||||
|
|
||||||
<div class="d-flex border border-white py-5 justify-content-center align-items-center" style="border-radius: 50px; min-height: 200px;">
|
<div class="d-flex border border-white py-5 justify-content-center align-items-center"
|
||||||
<div class="col-12 text-remove text-white w-100 text-center fs-4" style="font-family: Geologica-ExtraLight">Выберите предметы</div>
|
style="border-radius: 50px; min-height: 200px;">
|
||||||
|
<div class="col-12 text-remove text-white w-100 text-center fs-4"
|
||||||
|
style="font-family: Geologica-ExtraLight">Выберите предметы
|
||||||
|
</div>
|
||||||
<div class="table-responsive ps-5 " style="width: 90%">
|
<div class="table-responsive ps-5 " style="width: 90%">
|
||||||
<table class=" text-white px-5 calcul_rez" style="width: 90%; font-family: Geologica-ExtraLight;">
|
<table class=" text-white px-5 calcul_rez"
|
||||||
|
style="width: 90%; font-family: Geologica-ExtraLight;">
|
||||||
|
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
|
@ -527,8 +589,6 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -537,12 +597,14 @@
|
||||||
</div>
|
</div>
|
||||||
<br><br><br><br><br><br><br><br><br><br><br><br><br>
|
<br><br><br><br><br><br><br><br><br><br><br><br><br>
|
||||||
</div>
|
</div>
|
||||||
<div style="background-image: url({{ URL::to('img/front-page/bakalavr-special/fon4_blok.png') }}); background-repeat: no-repeat; background-attachment: fixed;">
|
<div
|
||||||
|
style="background-image: url({{ URL::to('img/front-page/bakalavr-special/fon4_blok.png') }}); background-repeat: no-repeat; background-attachment: fixed;">
|
||||||
|
|
||||||
<div class="container-fluid ms-sm-5 pt-5">
|
<div class="container-fluid ms-sm-5 pt-5">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
<div class="display-5 col-12 mb-3 text-center text-md-start gradient-text " style=" font-weight: 700; letter-spacing: 0em; ">
|
<div class="display-5 col-12 mb-3 text-center text-md-start gradient-text "
|
||||||
|
style=" font-weight: 700; letter-spacing: 0em; ">
|
||||||
ЭКРАН ПРИЕМА
|
ЭКРАН ПРИЕМА
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -571,22 +633,26 @@
|
||||||
</div> -->
|
</div> -->
|
||||||
<div class="mt-3 d-flex justify-content-center scroll-1">
|
<div class="mt-3 d-flex justify-content-center scroll-1">
|
||||||
<div class="row w-75 h-75 ps-2 scroll-1" style=" overflow:auto;">
|
<div class="row w-75 h-75 ps-2 scroll-1" style=" overflow:auto;">
|
||||||
<div class="col-11 " >
|
<div class="col-11 ">
|
||||||
<div class="row shadow-lg mt-3 bg-white" style=" border-radius: 20px;">
|
<div class="row shadow-lg mt-3 bg-white" style=" border-radius: 20px;">
|
||||||
<div class="col-9 m-3">
|
<div class="col-9 m-3">
|
||||||
<div class="fs-4 gradient-text" >
|
<div class="fs-4 gradient-text">
|
||||||
Начало приема документов
|
Начало приема документов
|
||||||
</div>
|
</div>
|
||||||
<p class="mt-2 gradient-text" style=" font-family: Geologica-ExtraLight; font-size: 16px; ">
|
<p class="mt-2 gradient-text"
|
||||||
А ещё базовые сценарии поведения пользователей представляют собой не что иное, как квинтэссенцию победы
|
style=" font-family: Geologica-ExtraLight; font-size: 16px; ">
|
||||||
|
А ещё базовые сценарии поведения пользователей представляют собой не что иное,
|
||||||
|
как квинтэссенцию победы
|
||||||
маркетинга над разумом и должны быть описаны максимально подробно
|
маркетинга над разумом и должны быть описаны максимально подробно
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-xxl-2 d-flex align-items-center ">
|
<div class="col-12 col-xxl-2 d-flex align-items-center ">
|
||||||
<div>
|
<div>
|
||||||
<div class="row mb-3 ms-3">
|
<div class="row mb-3 ms-3">
|
||||||
<div class="col-6"> 20.06.24 </div> <div class="col-6"> Бюджет </div>
|
<div class="col-6"> 20.06.24</div>
|
||||||
<div class="col-6"> 20.06.24 </div> <div class="col-6"> Бюджет </div>
|
<div class="col-6"> Бюджет</div>
|
||||||
|
<div class="col-6"> 20.06.24</div>
|
||||||
|
<div class="col-6"> Бюджет</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -594,19 +660,23 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="row shadow-lg mt-3 bg-white" style=" border-radius: 20px;">
|
<div class="row shadow-lg mt-3 bg-white" style=" border-radius: 20px;">
|
||||||
<div class="col-9 m-3">
|
<div class="col-9 m-3">
|
||||||
<div class="fs-4 gradient-text" >
|
<div class="fs-4 gradient-text">
|
||||||
Начало приема документов
|
Начало приема документов
|
||||||
</div>
|
</div>
|
||||||
<p class="mt-2 gradient-text" style=" font-family: Geologica-ExtraLight; font-size: 16px; ">
|
<p class="mt-2 gradient-text"
|
||||||
А ещё базовые сценарии поведения пользователей представляют собой не что иное, как квинтэссенцию победы
|
style=" font-family: Geologica-ExtraLight; font-size: 16px; ">
|
||||||
|
А ещё базовые сценарии поведения пользователей представляют собой не что иное,
|
||||||
|
как квинтэссенцию победы
|
||||||
маркетинга над разумом и должны быть описаны максимально подробно
|
маркетинга над разумом и должны быть описаны максимально подробно
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-xxl-2 d-flex align-items-center ">
|
<div class="col-12 col-xxl-2 d-flex align-items-center ">
|
||||||
<div>
|
<div>
|
||||||
<div class="row mb-3 ms-3">
|
<div class="row mb-3 ms-3">
|
||||||
<div class="col-6"> 20.06.24 </div> <div class="col-6"> Бюджет </div>
|
<div class="col-6"> 20.06.24</div>
|
||||||
<div class="col-6"> 20.06.24 </div> <div class="col-6"> Бюджет </div>
|
<div class="col-6"> Бюджет</div>
|
||||||
|
<div class="col-6"> 20.06.24</div>
|
||||||
|
<div class="col-6"> Бюджет</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -614,19 +684,23 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="row shadow-lg mt-3 bg-white" style=" border-radius: 20px;">
|
<div class="row shadow-lg mt-3 bg-white" style=" border-radius: 20px;">
|
||||||
<div class="col-9 m-3">
|
<div class="col-9 m-3">
|
||||||
<div class="fs-4 gradient-text" >
|
<div class="fs-4 gradient-text">
|
||||||
Начало приема документов
|
Начало приема документов
|
||||||
</div>
|
</div>
|
||||||
<p class="mt-2 gradient-text" style=" font-family: Geologica-ExtraLight; font-size: 16px; ">
|
<p class="mt-2 gradient-text"
|
||||||
А ещё базовые сценарии поведения пользователей представляют собой не что иное, как квинтэссенцию победы
|
style=" font-family: Geologica-ExtraLight; font-size: 16px; ">
|
||||||
|
А ещё базовые сценарии поведения пользователей представляют собой не что иное,
|
||||||
|
как квинтэссенцию победы
|
||||||
маркетинга над разумом и должны быть описаны максимально подробно
|
маркетинга над разумом и должны быть описаны максимально подробно
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-xxl-2 d-flex align-items-center ">
|
<div class="col-12 col-xxl-2 d-flex align-items-center ">
|
||||||
<div>
|
<div>
|
||||||
<div class="row mb-3 ms-3">
|
<div class="row mb-3 ms-3">
|
||||||
<div class="col-6"> 20.06.24 </div> <div class="col-6"> Бюджет </div>
|
<div class="col-6"> 20.06.24</div>
|
||||||
<div class="col-6"> 20.06.24 </div> <div class="col-6"> Бюджет </div>
|
<div class="col-6"> Бюджет</div>
|
||||||
|
<div class="col-6"> 20.06.24</div>
|
||||||
|
<div class="col-6"> Бюджет</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -634,19 +708,23 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="row shadow-lg mt-3 bg-white" style=" border-radius: 20px;">
|
<div class="row shadow-lg mt-3 bg-white" style=" border-radius: 20px;">
|
||||||
<div class="col-9 m-3">
|
<div class="col-9 m-3">
|
||||||
<div class="fs-4 gradient-text" >
|
<div class="fs-4 gradient-text">
|
||||||
Начало приема документов
|
Начало приема документов
|
||||||
</div>
|
</div>
|
||||||
<p class="mt-2 gradient-text" style=" font-family: Geologica-ExtraLight; font-size: 16px; ">
|
<p class="mt-2 gradient-text"
|
||||||
А ещё базовые сценарии поведения пользователей представляют собой не что иное, как квинтэссенцию победы
|
style=" font-family: Geologica-ExtraLight; font-size: 16px; ">
|
||||||
|
А ещё базовые сценарии поведения пользователей представляют собой не что иное,
|
||||||
|
как квинтэссенцию победы
|
||||||
маркетинга над разумом и должны быть описаны максимально подробно
|
маркетинга над разумом и должны быть описаны максимально подробно
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-xxl-2 d-flex align-items-center ">
|
<div class="col-12 col-xxl-2 d-flex align-items-center ">
|
||||||
<div>
|
<div>
|
||||||
<div class="row mb-3 ms-3">
|
<div class="row mb-3 ms-3">
|
||||||
<div class="col-6"> 20.06.24 </div> <div class="col-6"> Бюджет </div>
|
<div class="col-6"> 20.06.24</div>
|
||||||
<div class="col-6"> 20.06.24 </div> <div class="col-6"> Бюджет </div>
|
<div class="col-6"> Бюджет</div>
|
||||||
|
<div class="col-6"> 20.06.24</div>
|
||||||
|
<div class="col-6"> Бюджет</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -654,19 +732,23 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="row shadow-lg mt-3 bg-white" style=" border-radius: 20px;">
|
<div class="row shadow-lg mt-3 bg-white" style=" border-radius: 20px;">
|
||||||
<div class="col-9 m-3">
|
<div class="col-9 m-3">
|
||||||
<div class="fs-4 gradient-text" >
|
<div class="fs-4 gradient-text">
|
||||||
Начало приема документов
|
Начало приема документов
|
||||||
</div>
|
</div>
|
||||||
<p class="mt-2 gradient-text" style=" font-family: Geologica-ExtraLight; font-size: 16px; ">
|
<p class="mt-2 gradient-text"
|
||||||
А ещё базовые сценарии поведения пользователей представляют собой не что иное, как квинтэссенцию победы
|
style=" font-family: Geologica-ExtraLight; font-size: 16px; ">
|
||||||
|
А ещё базовые сценарии поведения пользователей представляют собой не что иное,
|
||||||
|
как квинтэссенцию победы
|
||||||
маркетинга над разумом и должны быть описаны максимально подробно
|
маркетинга над разумом и должны быть описаны максимально подробно
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-xxl-2 d-flex align-items-center ">
|
<div class="col-12 col-xxl-2 d-flex align-items-center ">
|
||||||
<div>
|
<div>
|
||||||
<div class="row mb-3 ms-3">
|
<div class="row mb-3 ms-3">
|
||||||
<div class="col-6"> 20.06.24 </div> <div class="col-6"> Бюджет </div>
|
<div class="col-6"> 20.06.24</div>
|
||||||
<div class="col-6"> 20.06.24 </div> <div class="col-6"> Бюджет </div>
|
<div class="col-6"> Бюджет</div>
|
||||||
|
<div class="col-6"> 20.06.24</div>
|
||||||
|
<div class="col-6"> Бюджет</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -674,19 +756,23 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="row shadow-lg mt-3 bg-white" style=" border-radius: 20px;">
|
<div class="row shadow-lg mt-3 bg-white" style=" border-radius: 20px;">
|
||||||
<div class="col-9 m-3">
|
<div class="col-9 m-3">
|
||||||
<div class="fs-4 gradient-text" >
|
<div class="fs-4 gradient-text">
|
||||||
Начало приема документов
|
Начало приема документов
|
||||||
</div>
|
</div>
|
||||||
<p class="mt-2 gradient-text" style=" font-family: Geologica-ExtraLight; font-size: 16px; ">
|
<p class="mt-2 gradient-text"
|
||||||
А ещё базовые сценарии поведения пользователей представляют собой не что иное, как квинтэссенцию победы
|
style=" font-family: Geologica-ExtraLight; font-size: 16px; ">
|
||||||
|
А ещё базовые сценарии поведения пользователей представляют собой не что иное,
|
||||||
|
как квинтэссенцию победы
|
||||||
маркетинга над разумом и должны быть описаны максимально подробно
|
маркетинга над разумом и должны быть описаны максимально подробно
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-xxl-2 d-flex align-items-center ">
|
<div class="col-12 col-xxl-2 d-flex align-items-center ">
|
||||||
<div>
|
<div>
|
||||||
<div class="row mb-3 ms-3">
|
<div class="row mb-3 ms-3">
|
||||||
<div class="col-6"> 20.06.24 </div> <div class="col-6"> Бюджет </div>
|
<div class="col-6"> 20.06.24</div>
|
||||||
<div class="col-6"> 20.06.24 </div> <div class="col-6"> Бюджет </div>
|
<div class="col-6"> Бюджет</div>
|
||||||
|
<div class="col-6"> 20.06.24</div>
|
||||||
|
<div class="col-6"> Бюджет</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -694,19 +780,23 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="row shadow-lg mt-3 bg-white" style=" border-radius: 20px;">
|
<div class="row shadow-lg mt-3 bg-white" style=" border-radius: 20px;">
|
||||||
<div class="col-9 m-3">
|
<div class="col-9 m-3">
|
||||||
<div class="fs-4 gradient-text" >
|
<div class="fs-4 gradient-text">
|
||||||
Начало приема документов
|
Начало приема документов
|
||||||
</div>
|
</div>
|
||||||
<p class="mt-2 gradient-text" style=" font-family: Geologica-ExtraLight; font-size: 16px; ">
|
<p class="mt-2 gradient-text"
|
||||||
А ещё базовые сценарии поведения пользователей представляют собой не что иное, как квинтэссенцию победы
|
style=" font-family: Geologica-ExtraLight; font-size: 16px; ">
|
||||||
|
А ещё базовые сценарии поведения пользователей представляют собой не что иное,
|
||||||
|
как квинтэссенцию победы
|
||||||
маркетинга над разумом и должны быть описаны максимально подробно
|
маркетинга над разумом и должны быть описаны максимально подробно
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-xxl-2 d-flex align-items-center ">
|
<div class="col-12 col-xxl-2 d-flex align-items-center ">
|
||||||
<div>
|
<div>
|
||||||
<div class="row mb-3 ms-3">
|
<div class="row mb-3 ms-3">
|
||||||
<div class="col-6"> 20.06.24 </div> <div class="col-6"> Бюджет </div>
|
<div class="col-6"> 20.06.24</div>
|
||||||
<div class="col-6"> 20.06.24 </div> <div class="col-6"> Бюджет </div>
|
<div class="col-6"> Бюджет</div>
|
||||||
|
<div class="col-6"> 20.06.24</div>
|
||||||
|
<div class="col-6"> Бюджет</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -714,12 +804,12 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br>
|
<br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br>
|
||||||
|
<br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -729,33 +819,39 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<div class="text-white fs-5"> Приемная коммисия: </div>
|
<div class="text-white fs-5"> Приемная коммисия:</div>
|
||||||
<p class="text-white"> (8772) 52-30-08 </p>
|
<p class="text-white"> (8772) 52-30-08 </p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<div class="text-white fs-5"> Приёмная комиссия филиала МГТУ в пос. Яблоновском:</div>
|
<div class="text-white fs-5"> Приёмная комиссия филиала МГТУ в пос. Яблоновском:</div>
|
||||||
<p class="text-white"> 8-938-530-53-14 </p>
|
<p class="text-white"> 8-938-530-53-14 </p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<div class="text-white fs-5"> Почта: </div>
|
<div class="text-white fs-5"> Почта:</div>
|
||||||
<p class="text-white"> info@mkgtu.ru </p>
|
<p class="text-white"> info@mkgtu.ru </p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-6 col-12">
|
<div class="col-md-6 col-12">
|
||||||
<p class="text-white"> 385000, Республика Адыгея, г. Майкоп, ул. Первомайская, д. 191 </p>
|
<p class="text-white"> 385000, Республика Адыгея, г. Майкоп, ул. Первомайская, д. 191 </p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6 col-12 d-flex justify-content-md-end justify-content-center">
|
<div class="col-md-6 col-12 d-flex justify-content-md-end justify-content-center">
|
||||||
<a href="#"><img width="30px" height="30px" src="{{ URL::to('img/front-page/vid.png') }}" alt="vid"></a>
|
<a href="#"><img width="30px" height="30px" src="{{ URL::to('img/front-page/vid.png') }}"
|
||||||
<a href="#"><img width="30px" height="30px" src="{{ URL::to('img/front-page/vk.png') }}" alt="vid"></a>
|
alt="vid"></a>
|
||||||
<a href="#"><img width="30px" height="30px" src="{{ URL::to('img/front-page/tg.png') }}" alt="vid"></a>
|
<a href="#"><img width="30px" height="30px" src="{{ URL::to('img/front-page/vk.png') }}"
|
||||||
<a href="#"><img width="30px" height="30px" src="{{ URL::to('img/front-page/rutub.png') }}" alt="vid"></a>
|
alt="vid"></a>
|
||||||
<a href="#"><img width="30px" height="30px" src="{{ URL::to('img/front-page/dzen.png') }}" alt="vid"></a>
|
<a href="#"><img width="30px" height="30px" src="{{ URL::to('img/front-page/tg.png') }}"
|
||||||
<a href="#"><img width="30px" height="30px" src="{{ URL::to('img/front-page/odnok.png') }}" alt="vid"></a>
|
alt="vid"></a>
|
||||||
|
<a href="#"><img width="30px" height="30px" src="{{ URL::to('img/front-page/rutub.png') }}"
|
||||||
|
alt="vid"></a>
|
||||||
|
<a href="#"><img width="30px" height="30px" src="{{ URL::to('img/front-page/dzen.png') }}"
|
||||||
|
alt="vid"></a>
|
||||||
|
<a href="#"><img width="30px" height="30px" src="{{ URL::to('img/front-page/odnok.png') }}"
|
||||||
|
alt="vid"></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue