forked from aslan/applicant-site
Compare commits
No commits in common. "3057579f9ead65fcbb87474280c1b77602b05860" and "31339e6b29a1e66fb5c8ed7fe8dfd2302cc895fa" have entirely different histories.
3057579f9e
...
31339e6b29
|
@ -26,7 +26,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
php-version: ${{ matrix.php-version }}
|
php-version: ${{ matrix.php-version }}
|
||||||
ini-values: opcache.enable_cli=1, extension=gd
|
ini-values: opcache.enable_cli=1, extension=gd
|
||||||
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite
|
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, gd
|
||||||
tools: composer:${{ matrix.composer-version }}
|
tools: composer:${{ matrix.composer-version }}
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -8,7 +8,6 @@ use App\Models\Admission;
|
||||||
use App\Models\Direction;
|
use App\Models\Direction;
|
||||||
use App\Models\EntranceExamination;
|
use App\Models\EntranceExamination;
|
||||||
use App\Models\Faculty;
|
use App\Models\Faculty;
|
||||||
use App\Models\News;
|
|
||||||
use App\Models\Subject;
|
use App\Models\Subject;
|
||||||
use Illuminate\Contracts\View\Factory;
|
use Illuminate\Contracts\View\Factory;
|
||||||
use Illuminate\Contracts\View\View;
|
use Illuminate\Contracts\View\View;
|
||||||
|
@ -24,7 +23,6 @@ class PageController extends Controller
|
||||||
|
|
||||||
public function bakalavr()
|
public function bakalavr()
|
||||||
{
|
{
|
||||||
$news = News::all();
|
|
||||||
$admissions = Admission::all();
|
$admissions = Admission::all();
|
||||||
$faculties = Faculty::all();
|
$faculties = Faculty::all();
|
||||||
$subjects = EntranceExamination::all()
|
$subjects = EntranceExamination::all()
|
||||||
|
@ -177,12 +175,10 @@ class PageController extends Controller
|
||||||
'directionsWithInstitution',
|
'directionsWithInstitution',
|
||||||
'groupedDirections',
|
'groupedDirections',
|
||||||
'admissions',
|
'admissions',
|
||||||
'news',
|
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
public function inostran()
|
public function inostran()
|
||||||
{
|
{
|
||||||
$news = News::all();
|
|
||||||
$admissions = Admission::all();
|
$admissions = Admission::all();
|
||||||
$faculties = Faculty::all();
|
$faculties = Faculty::all();
|
||||||
$subjects = EntranceExamination::all()
|
$subjects = EntranceExamination::all()
|
||||||
|
@ -335,13 +331,11 @@ class PageController extends Controller
|
||||||
'directionsWithInstitution',
|
'directionsWithInstitution',
|
||||||
'groupedDirections',
|
'groupedDirections',
|
||||||
'admissions',
|
'admissions',
|
||||||
'news',
|
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function magistr()
|
public function magistr()
|
||||||
{
|
{
|
||||||
$news = News::all();
|
|
||||||
$admissions = Admission::all();
|
$admissions = Admission::all();
|
||||||
$faculties = Faculty::all();
|
$faculties = Faculty::all();
|
||||||
$subjects = EntranceExamination::all()
|
$subjects = EntranceExamination::all()
|
||||||
|
@ -494,7 +488,6 @@ class PageController extends Controller
|
||||||
'directionsWithInstitution',
|
'directionsWithInstitution',
|
||||||
'groupedDirections',
|
'groupedDirections',
|
||||||
'admissions',
|
'admissions',
|
||||||
'news',
|
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -554,61 +554,212 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{-- Начало новостей --}} <div style="background-image: url({{ URL::to('img/front-page/bakalavr-special/fon1_blok.png') }}); background-repeat: no-repeat; background-size: cover; background-attachment: fixed; ">
|
{{-- <div style="background-image: url({{ URL::to('img/front-page/bakalavr-special/fon1_blok.png') }}); background-repeat: no-repeat; background-size: cover; background-attachment: fixed; ">
|
||||||
|
|
||||||
|
|
||||||
|
<div id="carouselExampleIndicators" class="carousel slide">
|
||||||
|
<div class="carousel-indicators">
|
||||||
<div id="carouselExampleIndicators" class="carousel slide ">
|
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
|
||||||
<div class="carousel-inner px-5 pt-5">
|
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2"></button>
|
||||||
@php
|
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2" aria-label="Slide 3"></button>
|
||||||
$all_news = array()
|
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="3" aria-label="Slide 3"></button>
|
||||||
@endphp
|
|
||||||
@foreach($news as $item)
|
|
||||||
@php
|
|
||||||
$all_news[$item->name]['name'] = $item->name;
|
|
||||||
$all_news[$item->name]['text'] = $item->text;
|
|
||||||
$all_news[$item->name]['url'] = asset($item->photo);
|
|
||||||
@endphp
|
|
||||||
@endforeach
|
|
||||||
|
|
||||||
@php
|
|
||||||
$out = array_chunk($all_news, 4, true);
|
|
||||||
@endphp
|
|
||||||
@foreach($out as $id => $page)
|
|
||||||
<div class="carousel-item @if($id == 1) active @endif \" >
|
|
||||||
<div class="row d-flex align-items-center justify-content-center " >
|
|
||||||
@foreach($page as $item)
|
|
||||||
|
|
||||||
|
|
||||||
<div class="col-xl col-12 " style=" max-width: 20%; ">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<img src="{{$item['url']}}" class="img-fluid">
|
|
||||||
<div class="bg-white " style="border-radius: 20px; height: 8em; overflow-y: auto">
|
|
||||||
<div class="gradient-text p-3" style="">
|
|
||||||
<strong class="fs-5" style="font-family: Geologica-Light"> {{$item['name']}} </strong>
|
|
||||||
<p style="font-family: Geologica-ExtraLight; " > {{$item['text']}} </p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
@endforeach
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<br><br><br><br>
|
|
||||||
</div>
|
</div>
|
||||||
@endforeach
|
<div class="carousel-inner px-5 pt-5">
|
||||||
|
<div class="carousel-item active " >
|
||||||
|
<div class="row d-flex align-items-center " >
|
||||||
|
<div class="col-xl col-12 " style=" height: 25em;">
|
||||||
|
|
||||||
|
<div class="w-100 h-75 position-relative " style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover; ">
|
||||||
|
|
||||||
|
|
||||||
<div class="carousel-indicators mt-5">
|
|
||||||
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px; ">
|
||||||
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2"></button>
|
<div class="gradient-text p-3">
|
||||||
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2" aria-label="Slide 3"></button>
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="3" aria-label="Slide 3"></button>
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-xl col-12 " style=" height: 25em;">
|
||||||
|
<div class="w-100 h-75 position-relative" style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover;">
|
||||||
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px;">
|
||||||
|
<div class="gradient-text p-3">
|
||||||
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-xl col-12" style=" height: 25em;">
|
||||||
|
<div class="w-100 h-75 position-relative" style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover;">
|
||||||
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px;">
|
||||||
|
<div class="gradient-text p-3">
|
||||||
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-xl col-12" style=" height: 25em;">
|
||||||
|
<div class="w-100 h-75 position-relative" style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover;">
|
||||||
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px;">
|
||||||
|
<div class="gradient-text p-3">
|
||||||
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="carousel-item " >
|
||||||
|
<div class="row d-flex align-items-center " >
|
||||||
|
<div class="col-xl col-12 " style=" height: 25em;">
|
||||||
|
|
||||||
|
<div class="w-100 h-75 position-relative " style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover; ">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px; ">
|
||||||
|
<div class="gradient-text p-3">
|
||||||
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-xl col-12 " style=" height: 25em;">
|
||||||
|
<div class="w-100 h-75 position-relative" style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover;">
|
||||||
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px;">
|
||||||
|
<div class="gradient-text p-3">
|
||||||
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-xl col-12" style=" height: 25em;">
|
||||||
|
<div class="w-100 h-75 position-relative" style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover;">
|
||||||
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px;">
|
||||||
|
<div class="gradient-text p-3">
|
||||||
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-xl col-12" style=" height: 25em;">
|
||||||
|
<div class="w-100 h-75 position-relative" style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover;">
|
||||||
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px;">
|
||||||
|
<div class="gradient-text p-3">
|
||||||
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="carousel-item " >
|
||||||
|
<div class="row d-flex align-items-center " >
|
||||||
|
<div class="col-xl col-12 " style=" height: 25em;">
|
||||||
|
|
||||||
|
<div class="w-100 h-75 position-relative " style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover; ">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px; ">
|
||||||
|
<div class="gradient-text p-3">
|
||||||
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-xl col-12 " style=" height: 25em;">
|
||||||
|
<div class="w-100 h-75 position-relative" style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover;">
|
||||||
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px;">
|
||||||
|
<div class="gradient-text p-3">
|
||||||
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-xl col-12" style=" height: 25em;">
|
||||||
|
<div class="w-100 h-75 position-relative" style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover;">
|
||||||
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px;">
|
||||||
|
<div class="gradient-text p-3">
|
||||||
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-xl col-12" style=" height: 25em;">
|
||||||
|
<div class="w-100 h-75 position-relative" style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover;">
|
||||||
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px;">
|
||||||
|
<div class="gradient-text p-3">
|
||||||
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="carousel-item " >
|
||||||
|
<div class="row d-flex align-items-center " >
|
||||||
|
<div class="col-xl col-12 " style=" height: 25em;">
|
||||||
|
|
||||||
|
<div class="w-100 h-75 position-relative " style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover; ">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px; ">
|
||||||
|
<div class="gradient-text p-3">
|
||||||
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете.qwfqaswefqaswfswfqaeswf </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="col-xl col-12 " style=" height: 25em;">
|
||||||
|
<div class="w-100 h-75 position-relative" style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover;">
|
||||||
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px;">
|
||||||
|
<div class="gradient-text p-3">
|
||||||
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-xl col-12" style=" height: 25em;">
|
||||||
|
<div class="w-100 h-75 position-relative" style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover;">
|
||||||
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px;">
|
||||||
|
<div class="gradient-text p-3">
|
||||||
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-xl col-12" style=" height: 25em;">
|
||||||
|
<div class="w-100 h-75 position-relative" style="border-radius: 20px; background-image: url({{ URL::to('img/front-page/e3305c89b9b89821588364d5e898afc0.jpg') }}); background-repeat: no-repeat; background-size: cover;">
|
||||||
|
<div class="position-absolute bottom-0 bg-white " style="border-radius: 20px;">
|
||||||
|
<div class="gradient-text p-3">
|
||||||
|
<strong class="fs-5" style="font-family: Geologica-Light"> Завершение приема документов </strong>
|
||||||
|
<p style="font-family: Geologica-ExtraLight"> Но явные признаки победы институционализации представлены в исключительно положительном свете. </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@ -622,35 +773,33 @@
|
||||||
<span class="visually-hidden">Next</span>
|
<span class="visually-hidden">Next</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</div> --}}
|
||||||
</div>
|
<div style="background-image: url({{ URL::to('img/front-page/bakalavr-special/footer_fon.png') }}); background-size: cover; ">
|
||||||
{{-- Конец новостей --}}
|
|
||||||
<div style="background-image: url({{ URL::to('img/front-page/bakalavr-special/fon3_blok.png') }}); background-size: cover; ">
|
|
||||||
<div class="container-fluid ms-sm-5 pt-5 ">
|
<div class="container-fluid ms-sm-5 pt-5 ">
|
||||||
<div class="row gradient-text">
|
<div class="row">
|
||||||
<div class="ms-4 col-auto ">
|
<div class="ms-4 col-auto ">
|
||||||
|
|
||||||
|
|
||||||
<div class="col-11">
|
<div class="col-11">
|
||||||
<div class=" fs-4"> Приемная коммисия:</div>
|
<div class="text-white fs-4"> Приемная коммисия:</div>
|
||||||
<p class="text-white"> (8772) 52-30-08 </p>
|
<p class="text-white"> (8772) 52-30-08 </p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="col-11">
|
<div class="col-11">
|
||||||
<div class=" fs-4"> Приёмная комиссия филиала МГТУ в пос. Яблоновском:</div>
|
<div class="text-white fs-4"> Приёмная комиссия филиала МГТУ в пос. Яблоновском:</div>
|
||||||
<p class=""> 8-938-530-53-14 </p>
|
<p class="text-white"> 8-938-530-53-14 </p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="col-11">
|
<div class="col-11">
|
||||||
<div class=" fs-4"> Почта:</div>
|
<div class="text-white fs-4"> Почта:</div>
|
||||||
<p class=""> info@mkgtu.ru </p>
|
<p class="text-white"> info@mkgtu.ru </p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="col-11">
|
<div class="col-11">
|
||||||
<p class=" fs-4"> 385000, Республика Адыгея, г. Майкоп, ул. Первомайская, д. 191 </p>
|
<p class="text-white fs-4"> 385000, Республика Адыгея, г. Майкоп, ул. Первомайская, д. 191 </p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-11">
|
<div class="col-11">
|
||||||
<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') }}" alt="vid"></a>
|
||||||
|
|
Loading…
Reference in New Issue