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/frontend/games.blade.php

19 lines
567 B
PHP
Executable File

@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