@extends('website.layouts.app') @section('meta_title', "Techne | $page->title") @section('meta_description', $page->min_description) {{-- @section('meta_keywords','Techne') --}} {{-- @foreach ($page->seos as $seo) @section($seo->key, $seo->value) @endforeach --}} @section('content') @if (! empty($page->title) || ! empty($page->min_description) || ! empty($page->coverImage))
coverImage) data-image-src="{{ asset('storage/'.($page->coverImage->thumbnail ?? $page->coverImage->path)) }}" style="background-attachment: fixed !important; background-repeat: no-repeat; background-position: center center; background-size: cover;" @endif >

{{ $page->title }}

@if(! empty($page->min_description))
{!! nl2br($page->min_description) !!}
@endif
@endif @if(! empty($page->description))
{!! html_entity_decode($page->description) !!}
@endif @if (count($pageLogosCategories)) @include('website.sections.logos-by-category', ['eventLogosCategories' => $pageLogosCategories]) @endif @if (! empty($page->link))
@endif @if (! empty($page->iframe))
{!! $page->iframe !!}
@endif @endsection