fix css
This commit is contained in:
parent
9ac14312e3
commit
037b51a6f8
|
|
@ -1,4 +1,4 @@
|
|||
@extends('layouts.ide')
|
||||
@extends('layouts.idenosidebar')
|
||||
@section('title')
|
||||
<title>{{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
|
|
|
|||
|
|
@ -0,0 +1,29 @@
|
|||
<!doctype html>
|
||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
|
||||
<head>
|
||||
@yield('title')
|
||||
<meta charset="utf-8">
|
||||
@yield('titlediscord')
|
||||
@yield('descdiscord')
|
||||
<meta content="https://archblox.com" property="og:url" />
|
||||
<meta content="https://archblox.com/img/MORBLOXlogo.png" property="og:image" />
|
||||
<meta content="#4b4b4b" data-react-helmet="true" name="theme-color" />
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
<link rel="apple-touch-icon" href="{{ asset('img/MORBLOX.png') }}" />
|
||||
<link rel="apple-touch-startup-image" href="{{ asset('img/MORBLOXsplash.png') }}" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
|
||||
<link href="{{ asset('css/app.css?id=e5Az527Gb1') }}" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
@yield('alert')
|
||||
<div style="width: 100%; left: 0px;" class="iphone-content">
|
||||
@yield('content')
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Loading…
Reference in New Issue