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

41 lines
867 B
PHP
Raw Normal View History

@extends('frontend/template')
2015-03-09 21:22:43 +00:00
@section('page-css')
2015-03-09 21:22:43 +00:00
<link rel="stylesheet" href="/css/memory.css">
@endsection
@section('content')
2015-03-09 21:22:43 +00:00
<div class="container">
2015-02-15 16:10:23 +00:00
<br>
<center><h1>Mémory</h1></center>
2015-02-15 16:10:23 +00:00
<br><br>
2015-02-19 21:53:52 +00:00
2015-03-07 00:25:55 +00:00
<!-- script jeu memory -->
<!-- js -->
<script src="/js/classList.min.js"></script>
<script src="/js/memory.js"></script>
2015-02-19 21:53:52 +00:00
2015-03-05 17:03:46 +00:00
<!-- <center><img src="http://i.ytimg.com/vi/xiIO1zUXNVI/maxresdefault.jpg" width="60%"></center> -->
2015-03-09 21:22:43 +00:00
2015-03-09 13:48:35 +00:00
<div class="wrapper">
2015-03-05 17:03:46 +00:00
<div class="content">
2015-03-07 00:25:55 +00:00
<div class="row">
2015-03-09 21:22:43 +00:00
<div class="col-xs-12 col-sm-10 col-md-12">
2015-03-07 00:25:55 +00:00
<div id="my-memory-game"></div>
2015-03-09 13:48:35 +00:00
</div>
2015-03-07 00:25:55 +00:00
</div>
2015-03-05 17:03:46 +00:00
</div>
</div><!-- /.content -->
2015-03-09 13:48:35 +00:00
</div>
@endsection
@section('page-scripts')
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="/js/classList.min.js"></script>
<script src="/js/memory.js"></script>
@endsection