Change html to double quotes

This commit is contained in:
Joseph Cohen
2015-01-06 15:44:27 -06:00
parent 561a2207ae
commit fd8e4f7fa9
34 changed files with 297 additions and 291 deletions
+4 -4
View File
@@ -21,21 +21,21 @@
<title>{{ $pageTitle ?: Setting::get('app_name') }} Status</title>
<link href='//fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
<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'>
<style type="text/css">
{{ $stylesheet }}
</style>
@endif
<script src="{{ elixir('js/all.js') }}"></script>
</head>
<body class='error-page'>
<div class='container'>
<body class="error-page">
<div class="container">
@yield('content')
</div>
</body>