Cachet/app/views/layout/master.blade.php

26 lines
856 B
PHP
Raw Normal View History

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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="http://james-brooks.uk">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="alternate" type="application/rss+xml" href="/rss" />
<title>{{ isset($pageTitle) ? $pageTitle : Setting::get('app_name') }} | Cachet</title>
2014-12-01 08:42:11 +00:00
<link href='http://fonts.googleapis.com/css?family=Raleway:400,700,300,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="{{ elixir('css/all.css') }}">
2014-12-05 13:30:47 +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>