2014-11-16 23:17:34 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2015-01-02 18:56:20 +00:00
|
|
|
<meta charset="utf-8">
|
2014-12-01 08:42:11 +00:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2014-12-29 22:12:47 +00:00
|
|
|
|
2014-12-31 23:30:18 -06:00
|
|
|
<meta name="env" content="{{ app('env') }}">
|
|
|
|
<meta name="token" content="{{ csrf_token() }}">
|
|
|
|
|
2015-01-02 21:07:38 +00:00
|
|
|
<link rel="alternate" type="application/atom+xml" href="/atom" title="{{ $pageTitle ?: Setting::get('app_name') }} Status - Atom Feed">
|
2015-01-02 18:56:20 +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">
|
2015-01-02 18:56:20 +00:00
|
|
|
<link rel="shortcut icon" href="/favicon.png" type="image/x-icon">
|
2014-12-31 22:00:55 +00:00
|
|
|
|
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">
|
|
|
|
|
2015-01-01 15:15:07 -06:00
|
|
|
<link rel="icon" type="image/png" href="{{ url('img/favicon.ico') }}">
|
2015-01-02 18:56:20 +00:00
|
|
|
<link rel="shortcut icon" href="{{ url('img/favicon.png') }}" type="image/x-icon">
|
|
|
|
|
|
|
|
<link rel="apple-touch-icon" href="{{ url('img/apple-touch-icon.png') }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="57x57" href="{{ url('img/apple-touch-icon-57x57.png') }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="72x72" href="{{ url('img/apple-touch-icon-72x72.png') }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="114x114" href="{{ url('img/apple-touch-icon-114x114.png') }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="120x120" href="{{ url('img/apple-touch-icon-120x120.png') }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="144x144" href="{{ url('img/apple-touch-icon-144x144.png') }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="152x152" href="{{ url('img/apple-touch-icon-152x152.png') }}">
|
2014-12-31 17:54:02 -06:00
|
|
|
|
2014-12-30 22:25:38 +00:00
|
|
|
<title>{{ $pageTitle ?: Setting::get('app_name') }} Status</title>
|
2014-12-01 19:33:15 +00:00
|
|
|
|
2015-01-06 15:44:27 -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'))
|
2015-01-06 15:44:27 -06:00
|
|
|
<style type="text/css">
|
2014-12-20 17:57:44 +00:00
|
|
|
{{ $stylesheet }}
|
|
|
|
</style>
|
|
|
|
@endif
|
|
|
|
|
2015-01-07 18:48:10 -06:00
|
|
|
<script type="text/javascript">
|
|
|
|
var Global = {};
|
|
|
|
Global.locale = '{{ Setting::get('app_locale') }}';
|
|
|
|
</script>
|
2014-12-01 19:33:15 +00:00
|
|
|
<script src="{{ elixir('js/all.js') }}"></script>
|
2014-11-16 23:17:34 +00:00
|
|
|
</head>
|
2015-01-06 15:44:27 -06:00
|
|
|
<body class="status-page">
|
|
|
|
<div class="container">
|
2014-12-01 08:42:11 +00:00
|
|
|
@yield('content')
|
|
|
|
</div>
|
2014-12-18 22:37:59 +00:00
|
|
|
|
2015-01-06 16:21:07 +00:00
|
|
|
@include('partials.footer')
|
2014-11-16 23:17:34 +00:00
|
|
|
</body>
|
|
|
|
</html>
|