This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
ModuleWeb/SRC/resources/views/home.blade.php

61 lines
2.0 KiB
PHP
Raw Normal View History

2015-02-12 12:56:47 +00:00
@extends('app')
@section('content')
2015-02-12 17:58:03 +00:00
<br>
<center>
<img style="height:auto; width:auto; max-width:400px; alt="" src="./pictures/homePic/bienvenue.png">
<br>
2015-02-12 17:58:03 +00:00
<br>
<form class="form-inline">
<div class="form-group">
<img alt="" src="./pictures/homePic/search.png">
2015-02-12 17:58:03 +00:00
<div class="input-group">
<input type="text" class="form-control" placeholder="Rechercher un Référant">
2015-02-12 17:58:03 +00:00
</div>
</div>
</form>
<br>
<br>
<div style="margin-left: 200px, margin-right: 200px" id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- indicateur, à incrementé en fonction du nombre d'images -->
2015-02-12 17:58:03 +00:00
<ol class="carousel-indicators">
@foreach ($referent as $ref)
@if ($ref -> idreferent == 1)
<li data-target="#carousel-example-generic" data-slide-to="{{ $ref -> idreferent }}" class='active' ></li>
@else
<li data-target="#carousel-example-generic" data-slide-to="{{ $ref -> idreferent }} "></li>
@endif
@endforeach
2015-02-12 17:58:03 +00:00
</ol>
<!-- Parametres des images -->
<div class="carousel-inner" role="listbox">
@foreach ($referent as $ref)
@if ($ref -> idreferent == 1)
<div class="item active">
@else
<div class="item">
@endif
<a href="/referents/vive.linux/games"><img src="./pictures/referent/{{ $ref-> image }}" width="35%" alt="{{ $ref -> prenom }}-{{ $ref -> nom }}"></a>
<div class="well well-lg">{{$ref -> prenom}}, {{$ref -> nom}}</div>
</div>
@endforeach
</div>
<!-- Controles -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Précédant</span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Suivant</span>
</a>
2015-02-12 12:56:47 +00:00
</div>
2015-02-12 17:58:03 +00:00
</center>
2015-02-12 12:56:47 +00:00
@endsection