@extends('temas.theme-four.layout')
@section('titulo-pagina')
@if(!empty($site->informacao->nome_comercial))
{{ $site->informacao->nome_comercial }}
@else
Página inicial
@endif
@endsection
@section('menu-noticias')
active
@endsection
@section('header')
@endsection
@section('conteudo')
{{-- titulo_sobre --}}
@include('temas.componentes.texto.create',[
'conteudo' => $conteudo,
'label' => 'Título',
'id' => 'titulo_pagina_modal_create',
'tipo' => 'titulo_pagina',
])
@if($conteudo->conteudos()->where('tipo','titulo_pagina')->first())
@include('temas.componentes.texto.edit',[
'conteudo' => $conteudo->conteudos()->where('tipo','titulo_pagina')->first(),
'label' => 'Título',
'id' => 'titulo_pagina_modal_edit',
'tipo' => 'titulo_pagina',
])
@endif
@include('temas.componentes.imagem.create',[
'conteudo' => $conteudo,
'label' => 'Imagem de fundo',
'id' => 'banner_pagina_modal_create',
'tipo' => 'banner_pagina',
'width' => '1920',
'height' => '165'
])
@if($conteudo->conteudos()->where('tipo','banner_pagina')->first())
@include('temas.componentes.imagem.edit',[
'conteudo' => $conteudo->conteudos()->where('tipo','banner_pagina')->first(),
'label' => 'Imagem de fundo',
'id' => 'banner_pagina_modal_edit',
'tipo' => 'banner_pagina',
'width' => '1920',
'height' => '165'
])
@endif
@endsection