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.
alexandre-pereira de05756a7b Refactoring Complet
Voir facebook pour l'installation de la nouvelle BDD.
2015-03-14 14:36:03 +01:00

19 lines
567 B
PHP

@extends('frontend/template')
@section('content')
<div class="referents">
<div class="referent game"
onclick='location.href = "{{ URL::to('puzzle') }}";'
style="background:url('{{ URL::to('imgs/puzzle.jpg') }}'); width: 50%;">
<div class="infos">Puzzle</div>
</div>
<div class="referent game"
onclick='location.href = "{{ URL::to('memo') }}";'
style="background:url('{{ URL::to('imgs/memo.jpg') }}'); width: 50%;">
<div class="infos">Mémo</div>
</div>
</div>
@endsection