File: /home/ser65kty/cardedeu.serversmw.com/resources/views/noticiashome.blade.php
@extends('layouts.app')
@section('metadata')
<title>NotÃcies - La Mongia - Ajuntament de Cardedeu</title>
@endsection
@section('content')
<section class="cabecera">
<div class="container">
<div class="clearfix"><br></div>
<div class="">
<h2 class="text-center">NotÃcies</h2>
@php
$i=0;
@endphp
@foreach($noticias as $noticia)
<div class="noticiasheader">
<div class="imagenoticiasheader"><img src="/images/noticias/{{$noticia->imatge}}"></div>
<div class="titolnoticiasheader">
<a href="/noticies/{{$noticia->id}}" class="cursolinkhome"><h1 class="text-center">{{$noticia->title}}</h1></a>
<br>
{!!$noticia->shortcontent!!}
<div class="fechanoticiasheader">{{App\Helpers\helpers::getdatedayhelper($noticia->datapublicacio)}}</div>
</div>
</div>
<div class="clearfix"></div>
@php
$i++;
@endphp
@endforeach
</div>{{ $noticias->onEachSide(1)->links() }}
</div>
</section>
<div class="clearfix"></div>
@endsection
@section('bottomscripts')
@endsection