Skip to content

Commit f40e72f

Browse files
committed
Merge pull request laravel#3484 from Zarthus/patch/views-use-https
Use https rather than // for google fonts in default views.
2 parents 2ddeae9 + b8790d5 commit f40e72f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/views/errors/503.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<title>Be right back.</title>
55

6-
<link href="//fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
6+
<link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
77

88
<style>
99
html, body {

resources/views/welcome.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<title>Laravel</title>
55

6-
<link href="//fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
6+
<link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
77

88
<style>
99
html, body {

0 commit comments

Comments
 (0)