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

16 lines
467 B
PHP
Executable File

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>Les Jeux du Musée</title>
<link href="http://fonts.googleapis.com/css?family=Oswald:700,300" rel="stylesheet" type="text/css">
<link href="{{ URL::to('css/frontend.css') }}" rel="stylesheet" type="text/css"/>
@yield('page-css')
</head>
<body>
@yield('content')
@yield('page-scripts')
</body>
</html>