HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //var/www/quadcode-jobs/resources/views/site/welcome.blade.php
@php use App\Repositories\VacancyRepository; @endphp

@extends('site.layouts.app')
@section('title', 'Main')
@section('description', 'Join our team at Quadcode!')
@section('keywords', 'Quadcode')

@section('content')
    <section class="welcome welcome_home" style="--welcome-bg: url({{ asset('/files/Main_crop.jpg') }});">
        <div class="welcome__video-wrap">
            <video preload="auto" autoplay muted loop playsinline poster="{{ asset('/files/index.jpeg') }}" data-mobile="{{ asset('/files/12125124124.jpg') }}">
                <source data-src="{{ asset('/files/index.mp4') }}" type="video/mp4">
            </video>
        </div>
        <div class="container">
            <div class="welcome__inner">
                <header class="welcome__header fw-600">
                    <h1 class="fw-600">Join our team</h1>
                </header>
                @if(!empty(VacancyRepository::hasVacancies()))
                    <div class="welcome__search">
                        @include('site.partials.search_form')
                    </div>
                @endif
            </div>
            <div class="welcome__call-to-scroll welcome__call-to-scroll--mobile">
                <a href="#" class="btn-arrow btn-arrow--bottom js-scroll-trigger" aria-label="link" rel="noopener">
                    <div class="btn-arrow__arrow">
                        <span></span>
                    </div>
                </a>
            </div>
        </div>
    </section>

    @if(!empty(VacancyRepository::hasVacancies()))
        @include('site.blocks.hot_categories')
    @endif

    @include('site.blocks.team')
    @include('site.blocks.map')

@stop