3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus-Panel/resources/views/layouts/default.blade.php

45 lines
1.7 KiB
PHP
Raw Normal View History

2020-02-26 13:59:58 +00:00
<html lang="en">
<head>
<!-- ==============================================
Title and Meta Tags
=============================================== -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
2021-06-29 20:05:00 +00:00
<title>{{ env('APP_NAME', 'ThemePark') }}</title>
2020-02-26 13:59:58 +00:00
<!-- ==============================================
Favicon
=============================================== -->
<link rel="icon" type="image/x-icon" href="{{ asset('assets/img/favicon.ico') }}" />
<link rel="icon" type="image/png" href="{{ asset('assets/img/favicon-32x32.png') }}" sizes="32x32" />
<link rel="icon" type="image/png" href="{{ asset('assets/img/favicon-16x16.png') }}" sizes="16x16" />
<!-- ==============================================
CSS Files
=============================================== -->
<link href="{{ asset('assets/css/bootstrap.min.css') }}" rel="stylesheet">
@yield('css')
2020-02-26 13:59:58 +00:00
<link href="{{ asset('assets/css/style.css') }}" rel="stylesheet">
</head>
<body>
2021-06-29 20:05:00 +00:00
@yield('body')
2020-02-26 13:59:58 +00:00
<footer class="footer">
<div class="container">
2021-06-29 20:05:00 +00:00
<span>Copyright &copy; 2019-{{ date('Y') }} <a href="https://www.iobyte.nl/"><img src="{{ asset('assets/img/logo.png') }}" alt="IOByte"></a>. All rights reserved.</span>
2020-02-26 13:59:58 +00:00
</div>
</footer>
<!-- ==============================================
JS Files
=============================================== -->
<script src="{{ asset('assets/js/jquery.min.js') }}"></script>
<script src="{{ asset('assets/js/bootstrap.min.js') }}"></script>
<script src="{{ asset('assets/js/core.js') }}"></script>
@yield('javascript')
2020-02-26 13:59:58 +00:00
</body>
</html>