mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-19 12:24:01 +00:00
21 lines
885 B
PHP
21 lines
885 B
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') Swagger Doc</title>
|
|
<link rel="icon" sizes="16x16" href="{!! asset('share/favicon.png') !!}" />
|
|
@yield('header_styles')
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<strong>Please enable JavaScript to continue</strong>
|
|
</noscript>
|
|
<div id="app"></div>
|
|
<script type="text/javascript" src="{{ asset('swagger/js/index.js') . '?v=' . config('constants.version') }}"></script>
|
|
</body>
|
|
</html>
|