@extends('candidate'.viewPrfx().'layouts.master')
@section('page-title'){{$page}}@endsection
@section('content')
@if(settingEmpSlug('enable_home_banner') == 'yes')
@include('candidate.beta.partials.home-banner-absolute')
@endif
@if(settingEmpSlug('before_how_text'))
{!! settingEmpSlug('before_how_text') !!}
@endif
@if(settingEmpSlug('home_how_it_works') == 'yes')
@include('candidate.beta.partials.home-steps')
@endif
@if(settingEmpSlug('after_how_text'))
{!! settingEmpSlug('after_how_text') !!}
@endif
@if(settingEmpSlug('home_department_section') == 'yes' && $departments)
@include('candidate.beta.partials.home-departments-section')
@endif
@if(settingEmpSlug('before_blogs_text'))
{!! settingEmpSlug('before_blogs_text') !!}
@endif
@if(settingEmpSlug('home_blogs_section') == 'yes' && $blogs)
@include('candidate.beta.partials.home-blogs-section')
@endif
@if(settingEmpSlug('after_blogs_text'))
{!! settingEmpSlug('after_blogs_text') !!}
@endif
@endsection