2014-11-16 23:17:34 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2014-12-01 08:42:11 +00:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2014-12-29 22:12:47 +00:00
|
|
|
|
|
|
|
<!-- RSS Feed -->
|
2014-12-30 22:25:38 +00:00
|
|
|
<link rel="alternate" type="application/rss+xml" href="/rss" title="{{ $pageTitle ?: Setting::get('app_name') }} Status - RSS Feed" />
|
2014-12-01 19:33:15 +00:00
|
|
|
|
2014-12-31 22:00:55 +00:00
|
|
|
<link rel="icon" type="image/png" href="/favicon.ico">
|
|
|
|
<link rel="shortcut icon" href="/favicon.png" type="image/x-icon" />
|
|
|
|
|
2014-12-29 22:12:47 +00:00
|
|
|
<!-- Mobile friendliness -->
|
|
|
|
<meta name="HandheldFriendly" content="True">
|
|
|
|
<meta name="MobileOptimized" content="320">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
|
|
|
|
<!-- Mobile IE allows us to activate ClearType technology for smoothing fonts for easy reading -->
|
|
|
|
<meta http-equiv="cleartype" content="on">
|
|
|
|
|
2014-12-31 17:54:02 -06:00
|
|
|
<link rel="icon" type="image/png" href="{{ URL::to('img/favicon.ico') }}">
|
|
|
|
<link rel="shortcut icon" href="{{ URL::to('img/favicon.png') }}" type="image/x-icon" />
|
|
|
|
|
|
|
|
<link rel="apple-touch-icon" href="{{ URL::to('img/apple-touch-icon.png') }}" />
|
|
|
|
<link rel="apple-touch-icon" sizes="57x57" href="{{ URL::to('img/apple-touch-icon-57x57.png') }}" />
|
|
|
|
<link rel="apple-touch-icon" sizes="72x72" href="{{ URL::to('img/apple-touch-icon-72x72.png') }}" />
|
|
|
|
<link rel="apple-touch-icon" sizes="114x114" href="{{ URL::to('img/apple-touch-icon-114x114.png') }}" />
|
|
|
|
<link rel="apple-touch-icon" sizes="120x120" href="{{ URL::to('img/apple-touch-icon-120x120.png') }}" />
|
|
|
|
<link rel="apple-touch-icon" sizes="144x144" href="{{ URL::to('img/apple-touch-icon-144x144.png') }}" />
|
|
|
|
<link rel="apple-touch-icon" sizes="152x152" href="{{ URL::to('img/apple-touch-icon-152x152.png') }}" />
|
|
|
|
|
2014-12-30 22:25:38 +00:00
|
|
|
<title>{{ $pageTitle ?: Setting::get('app_name') }} Status</title>
|
2014-12-01 19:33:15 +00:00
|
|
|
|
2014-12-28 03:24:33 -06:00
|
|
|
<link href='//fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
|
2014-12-10 08:37:37 +00:00
|
|
|
<link rel="stylesheet" href="{{ elixir('css/all.css') }}">
|
2014-12-05 13:30:47 +00:00
|
|
|
|
2014-12-20 17:55:40 +00:00
|
|
|
@include('partials.stylesheet')
|
|
|
|
|
2014-12-20 17:57:44 +00:00
|
|
|
@if($stylesheet = Setting::get('stylesheet'))
|
|
|
|
<style type='text/css'>
|
|
|
|
{{ $stylesheet }}
|
|
|
|
</style>
|
|
|
|
@endif
|
|
|
|
|
2014-12-01 19:33:15 +00:00
|
|
|
<script src="{{ elixir('js/all.js') }}"></script>
|
2014-11-16 23:17:34 +00:00
|
|
|
</head>
|
2014-12-05 13:38:07 +00:00
|
|
|
<body class='status-page'>
|
2014-12-01 08:42:11 +00:00
|
|
|
<div class='container'>
|
|
|
|
@yield('content')
|
|
|
|
</div>
|
2014-12-18 22:37:59 +00:00
|
|
|
|
|
|
|
@include('partials.support-link')
|
2014-11-16 23:17:34 +00:00
|
|
|
</body>
|
|
|
|
</html>
|