Browse Source

Merge pull request #3416 from krienow/doctype

Fix doctype declarations
Taylor Otwell 9 years ago
parent
commit
f6e6508b4e
2 changed files with 10 additions and 2 deletions
  1. 5 1
      resources/views/errors/503.blade.php
  2. 5 1
      resources/views/welcome.blade.php

+ 5 - 1
resources/views/errors/503.blade.php

@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
     <head>
         <title>Be right back.</title>
@@ -5,11 +6,14 @@
         <link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
 
         <style>
+            html, body {
+                height: 100%;
+            }
+
             body {
                 margin: 0;
                 padding: 0;
                 width: 100%;
-                height: 100%;
                 color: #B0BEC5;
                 display: table;
                 font-weight: 100;

+ 5 - 1
resources/views/welcome.blade.php

@@ -1,3 +1,4 @@
+<!DOCTYPE html>
 <html>
     <head>
         <title>Laravel</title>
@@ -5,11 +6,14 @@
         <link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
 
         <style>
+            html, body {
+                height: 100%;
+            }
+
             body {
                 margin: 0;
                 padding: 0;
                 width: 100%;
-                height: 100%;
                 color: #B0BEC5;
                 display: table;
                 font-weight: 100;