@extends('layouts.app') @php $class_background = ' '.($template_config->template->background->type ?? '').' '.($template_config->template->background->class ?? ''); @endphp @section('body_class',$class_background) @section('extra-head') {{-- @parent - uncomment if needed include parent extra head section --}} {{-- custom styles --}} {!! Html::style('https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800', [], (Request::secure()) ) !!} {!! Html::style('template1/css/font-awesome.min.css', [], Request::secure()) !!} {!! Html::style(app()->environment('production') ? mix('template1/css/app.css') : asset('template1/css/app.css'), ['id' => 'mainStyles', 'media' => 'screen'], Request::secure()) !!} @endsection @section('extra-scripts') @parent {{-- custom scripts --}} {!! Html::script('template1/js/bootstrap.bundle.min.js', [], (Request::secure())) !!} {!! Html::script('template1/js/jquery.easing.min.js', [], (Request::secure())) !!} {!! Html::script('template1/js/scrollreveal.min.js', [], (Request::secure())) !!} {!! Html::script('template1/js/creative.min.js', [], (Request::secure())) !!} {{-- {!! Html::script('template1/js/custom.js', [], (Request::secure())) !!}--}} {!! Html::script(app()->environment('production') ? mix('template1/js/custom.js') : asset('template1/js/custom.js'), [], Request::secure()) !!} @endsection @section('content') @include('shared.template1.header') @yield('own-content') @endsection