Ekapp/skolehjem/resources/views/layout/base.blade.php

17 lines
492 B
PHP
Raw Normal View History

2020-06-08 13:08:46 +00:00
<!DOCTYPE html>
<html lang="en">
2020-06-08 13:08:46 +00:00
<head>
2020-06-09 06:38:05 +00:00
<title>@yield("title")</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
2020-06-08 13:08:46 +00:00
<link type="text/css" rel="stylesheet" href="{{ mix("/css/app.css") }}">
</head>
<body>
@yield("header")
2020-06-08 13:08:46 +00:00
@yield("content")
<script src="{{ mix("/js/app.js") }}"></script>
@yield("scripts")
2020-06-08 13:08:46 +00:00
</body>
</html>