-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (94 loc) · 4.08 KB
/
index.html
File metadata and controls
99 lines (94 loc) · 4.08 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Ollie Read">
<meta name="description" content="PHP & Laravel development content, articles, videos and courses">
<meta name="keywords" content="">
<title>Ollie Codes - PHP & Laravel Development</title>
<link rel="stylesheet" href="style.css" type="text/css">
<!-- Fonts -->
<script src="https://kit.fontawesome.com/3e1712f52c.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap" rel="stylesheet">
<meta property="og:locale" content="en_GB"/>
<meta property="og:type" content="site"/>
<meta property="og:title" content="Ollie Codes - PHP & Laravel Development"/>
<meta property="og:description"
content="PHP & Laravel development content, articles, videos and courses"/>
<meta property="og:image" content="https://ollie.codes/images/oc-share-image.png">
<meta property="og:url" content="https://ollie.codes"/>
<meta property="og:site_name" content="Ollie Read"/>
<meta name="twitter:card" content="summary"/>
<meta name="twitter:description"
content="PHP & Laravel development content, articles, videos and courses"/>
<meta name="twitter:title" content="Ollie Codes - PHP & Laravel Development"/>
<meta name="twitter:site" content="@olliecodes"/>
<meta name="twitter:creator" content="@ollieread"/>
<meta name="twitter:domain" content="https://ollie.codes"/>
<meta name="twitter:image" content="https://ollie.codes/images/oc-share-image.png">
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Person",
"email": "mailto:me@ollieread.com",
"jobTitle": "Freelance Laravel & PHP Developer",
"name": "Ollie Read",
"gender": "male",
"nationality": "White British",
"url": "https://ollieread.com",
"sameAs": [
"https://www.linkedin.com/in/ollieread/",
"https://twitter.com/ollieread",
"https://www.instagram.com/ollieread/",
"https://github.com/ollieread",
"https://stackoverflow.com/users/3104359/ollieread"
]
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "https://ollie.codes",
"name": "Ollie Codes - PHP & Laravel Development",
"author": {
"@type": "Person",
"name": "Ollie Read"
},
"description": "PHP & Laravel development content, articles, videos and courses",
"publisher": {
"@type": "Organization",
"name": "ollie.codes",
"logo": {
"@type": "ImageObject",
"url": "https://ollie.codes/images/oc-badge-avatar-small.png"
}
}
}
</script>
</head>
<body>
<div class="container container--primary">
<img src="/images/oc-badge.svg" alt="Ollie Codes - Badge" class="badge">
<div>
<h1 class="title">Ollie Codes</h1>
<h2 class="subtitle">PHP and Laravel development</h2>
</div>
</div>
<div class="container">
<a href="https://www.youtube.com/c/OllieCodes" title="Ollie Codes YouTube" target="_blank"
class="link link--youtube">
<i class="fab fa-youtube"></i>
</a>
<a href="https://twitter.com/olliecodes" title="Ollie Codes Twitter" target="_blank" class="link link--twitter">
<i class="fab fa-twitter"></i>
</a>
<a href="https://discord.gg/k7yUccq" title="Ollie Codes Discord" target="_blank" class="link link--discord">
<i class="fab fa-discord"></i>
</a>
</div>
</body>
</html>