mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-24 03:34:12 +01:00
34 lines
1006 B
PHP
34 lines
1006 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<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>
|
|
|
|
<link href='//fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
|
|
<link rel="stylesheet" href="{{ elixir('css/all.css') }}">
|
|
|
|
@include('partials.stylesheet')
|
|
|
|
@if($stylesheet = Setting::get('stylesheet'))
|
|
<style type='text/css'>
|
|
{{ $stylesheet }}
|
|
</style>
|
|
@endif
|
|
|
|
<script src="{{ elixir('js/all.js') }}"></script>
|
|
</head>
|
|
<body class='status-page'>
|
|
<div class='container'>
|
|
@yield('content')
|
|
</div>
|
|
|
|
@include('partials.support-link')
|
|
</body>
|
|
</html>
|