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

67 lines
2.4 KiB
PHP
Raw Normal View History

2015-02-12 12:56:47 +00:00
@extends('app')
@section('content')
<center>
2015-02-18 16:58:11 +00:00
<!-- <img style="height:auto; width:auto; max-width:400px; alt="" src="./pictures/homePic/bienvenue.png"> -->
<nav class="navbar transparent navbar-inverse">
2015-02-18 17:42:00 +00:00
<form class="form-inline navbar-right">
2015-02-12 17:58:03 +00:00
<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>
2015-02-18 17:42:00 +00:00
</nav>
2015-02-12 17:58:03 +00:00
<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 -> id == $referent[0] -> id)
<li data-target="#carousel-example-generic" data-slide-to="{{ $ref -> id }}" class='active' ></li>
@else
<li data-target="#carousel-example-generic" data-slide-to="{{ $ref -> id }} "></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 -> id == $referent[0] -> id)
<div class="item active">
@else
<div class="item">
@endif
2015-02-16 02:34:48 +00:00
<br>
2015-02-18 17:20:35 +00:00
<a href="/referents/vive.linux/games"><img style="border: 7px solid white; box-shadow: 0px 0px 3px black; max-height: 500px;" src="{{$ref -> image}}" width="250px" alt="{{ $ref -> name }}-Nom"></a>
2015-02-18 15:49:02 +00:00
<div class="well well-lg">{{$ref -> firstname}}, {{$ref -> lastname}}</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
2015-02-16 02:34:48 +00:00
<script type="text/javascript" src="http://www.themesltd.com/tumblr/cursors/mouse-cursors/cursors.js?cat=mouse-cursors&theme=mickey_mouse_finger&path=cartoon"></script>
2015-02-16 01:55:24 +00:00
<script type="text/javascript">
//<!-- bloque le clique droit
document.oncontextmenu = new Function("return false");
//-->
</script>
2015-02-12 17:58:03 +00:00
</center>
2015-02-12 12:56:47 +00:00
@endsection