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-20 17:28:36 +00:00
|
|
|
<link rel="alternate" type="application/rss+xml" href="/rss" />
|
2014-12-01 19:33:15 +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">
|
|
|
|
|
2014-12-30 09:39:19 +00:00
|
|
|
<title>{{ isset($pageTitle) ? $pageTitle : Setting::get('app_name') }}</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>
|