mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
25 lines
663 B
PHP
25 lines
663 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>{{ config('app.name') }}</title>
|
|
<link rel="stylesheet" href="{{ asset('/vendor/translation/css/main.css') }}">
|
|
</head>
|
|
<body>
|
|
|
|
<div id="app">
|
|
|
|
@include('translation::nav')
|
|
@include('translation::notifications')
|
|
|
|
@yield('body')
|
|
|
|
</div>
|
|
|
|
<script src="{{ asset('/vendor/translation/js/app.js') }}"></script>
|
|
</body>
|
|
</html>
|