-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathpage.html
48 lines (48 loc) · 3.62 KB
/
page.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>{% if page.title %}{{ page.title }} - {% endif %}Laravel: The Right Way</title>
<meta name="description" content="{{ page.description }}"/>
<meta name="robots" content="index,follow,archive"/>
<meta property="og:image" content="http://www.laraveltherightway.com/images/og-logo.png"/>
<meta property="og:title" content="Laravel: The Right Way"/>
<meta property="og:description" content="An easy-to-read, quick reference for Laravel best practices, accepted coding standards, and links to authoritative PHP tutorials around the Web"/>
<meta property="og:url" content="http://www.laraveltherightway.com"/>
<meta property="og:site_name" content="Laravel: The Right Way"/>
<meta property="og:type" content="website"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<link href='http://fonts.googleapis.com/css?family=Alfa+Slab+One|Droid+Serif:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="{{ site.baseurl }}styles/all.css"/>
<link rel="stylesheet" href="{{ site.baseurl }}styles/syntax.css"/>
<link rel="icon" href="{{ site.baseurl }}images/favicon.png" type="image/png"/>
</head>
<body>
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-N7WWCH"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-N7WWCH');</script>
<!-- End Google Tag Manager -->
<header class="interior-site-header">
<div class="site-title"><a href="/">Laravel</a></div>
<div class="site-slogan">The Right Way.</div>
<a class="btn btn-h" href="/">Return to Main Page</a>
<a class="fork-me" href="https://github.com/laraveltherightway/laraveltherightway.github.io">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub">
</a>
</header>
<div class="interior-site-content">
{{ content }}
<a href="/">Return to Main Page</a>
<footer class="site-footer" id="site-footer">
<p>
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Laravel: The Right Way</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://www.twitter.com/buonzz" property="cc:attributionName" rel="cc:attributionURL">Darwin Biler</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br />Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://www.laraveltherightway.com" rel="dct:source">www.laraveltherightway.com</a>.
</p>
</footer>
</div>
</body>
</html>