mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-19 12:24:01 +00:00
27 lines
1.5 KiB
PHP
27 lines
1.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="ROBOTS" content="NOINDEX, FOLLOW">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>{{ config('constants.site.title') }} @yield('title')</title>
|
|
<link rel="icon" sizes="16x16" href="{!! asset('share/favicon.png') !!}" />
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('admin/css/index.css') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('admin/css/editor.css') . '?v=' . config('constants.version') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('fonts/font-awesome/css/all.min.css') . '?v=' . config('constants.version') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('fonts/material/material-design-icons.css') . '?v=' . config('constants.version') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('fonts/linearicon/dist/pe-icon-7-stroke.css') . '?v=' . config('constants.version') }}">
|
|
|
|
@yield('header_styles')
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<strong>Please enable JavaScript to continue</strong>
|
|
</noscript>
|
|
<div id="app"></div>
|
|
<script type="text/javascript" src="{{ asset('admin/js/index.js') . '?v=' . config('constants.version') }}"></script>
|
|
</body>
|
|
</html>
|