Ajout des news & pictures & complementary activity

This commit is contained in:
Mathieu Lagace
2019-08-04 14:26:14 -04:00
parent 47128ea6fc
commit 97a7be702e
61 changed files with 11617 additions and 466 deletions

View File

@@ -0,0 +1,21 @@
@extends('layouts.public.main')
@section('content')
<article id="main">
<section class="wrapper style5">
<div class="inner">
<div class="row">
<div class="col-md-12">
<h2>{{ $picture->title }}</h2>
<div><span class="image fit"><img src="{{ $picture->url }}" alt="{{ $picture->title }}"></span></div>
<p>
{{ $picture->desc }}
</p>
<span class="news-small">{{ $picture->created_at }}</span>
<a href="{{ url()->previous() }}" class="btn button primary">Retour</a>
</div>
</div>
</div>
</section>
</article>
@endsection