61 lines
1.9 KiB
PHP
61 lines
1.9 KiB
PHP
@extends('layouts.gsap', ['header' => 'partials.header', 'footer' => 'partials.footer'])
|
||
|
||
@section('title', t('Neler Yapıyoruz?') ?: 'Neler Yapıyoruz?')
|
||
|
||
@push('styles')
|
||
@include('templates.neler-yapariz.external-links')
|
||
<style>
|
||
{!! file_get_contents(resource_path('views/templates/neler-yapariz/css/main.css')) !!}
|
||
</style>
|
||
<style>
|
||
{!! file_get_contents(resource_path('views/templates/neler-yapariz/css/additional.css')) !!}
|
||
</style>
|
||
@endpush
|
||
|
||
@section('content')
|
||
@include('templates.neler-yapariz.navigation')
|
||
|
||
<div id="smooth-wrapper" data-start="hidden" class="scroll-wrapper">
|
||
<main id="smooth-content" class="main">
|
||
@include('templates.neler-yapariz.sections.hero')
|
||
|
||
@include('templates.neler-yapariz.sections.flip')
|
||
@include('templates.neler-yapariz.sections.slider')
|
||
@include('templates.neler-yapariz.sections.inertia')
|
||
@include('templates.neler-yapariz.sections.text')
|
||
@include('templates.neler-yapariz.sections.marquee')
|
||
</div>
|
||
|
||
@include('templates.neler-yapariz.sections.footer')
|
||
</main>
|
||
</div>
|
||
@endsection
|
||
|
||
@push('scripts')
|
||
@include('templates.neler-yapariz.external-scripts')
|
||
|
||
{{-- Navigation Scripts --}}
|
||
@include('templates.neler-yapariz.js.nav')
|
||
@include('templates.neler-yapariz.js.section-selector')
|
||
|
||
{{-- Hero Script --}}
|
||
@include('templates.neler-yapariz.js.hero')
|
||
|
||
{{-- Section Scripts --}}
|
||
@include('templates.neler-yapariz.js.flip')
|
||
@include('templates.neler-yapariz.js.section-scroll')
|
||
@include('templates.neler-yapariz.js.scrolltrigger')
|
||
@include('templates.neler-yapariz.js.slider')
|
||
@include('templates.neler-yapariz.js.inertia')
|
||
@include('templates.neler-yapariz.js.text')
|
||
@include('templates.neler-yapariz.js.marquee')
|
||
|
||
{{-- Footer Scripts --}}
|
||
@include('templates.neler-yapariz.js.footerlogo')
|
||
@include('templates.neler-yapariz.js.copybtn-buttons')
|
||
|
||
{{-- Global Scripts --}}
|
||
@include('templates.neler-yapariz.js.global')
|
||
|
||
@endpush
|