This repository has been archived by the owner on Sep 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.php
109 lines (88 loc) · 4.59 KB
/
index.php
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
100
101
102
103
104
105
106
107
108
109
<?php
$quotes = json_decode(file_get_contents('data.json'), true);
$quote = $quotes[mt_rand(0, count($quotes) - 1)];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Primary Meta Tags -->
<title>Random Elon Musk — Generate and Share Your Favourite Elon Quotes
</title>
<meta name="title" content="Random Elon Musk — Generate and Share Your Favourite Elon Quotes">
<meta name="description"
content="We love Elon Musk. We created a Random Elon Musk Quote Generator for you to share his wisdom and funny quotes.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://randomelon.peterthaleikis.com">
<meta property="og:title" content="Random Elon Musk — Generate and Share Your Favourite Elon Quotes">
<meta property="og:description"
content="We love Elon Musk. We created a Random Elon Musk Quote Generator for you to share his wisdom and funny quotes.">
<meta property="og:image" content="https://api.imageee.com/bold?text=Random%20Elon%20Musk&bg_image=https://randomelon.peterthaleikis.com/elon-musk.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://randomelon.peterthaleikis.com">
<meta property="twitter:title" content="Random Elon Musk — Generate and Share Your Favourite Elon Quotes
">
<meta
property="twitter:description"
content="We love Elon Musk. We created a Random Elon Musk Quote Generator for you to share his wisdom and funny quotes.">
<meta property="twitter:image" content="https://api.imageee.com/bold?text=Random%20Elon%20Musk&bg_image=https://randomelon.peterthaleikis.com/elon-musk.jpg">
<!-- Tailwind CSS -->
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
</head>
<body>
<script>
// reload on space bar
document.body.onkeyup = (e) => { if(e.keyCode == 32) { window.location.href = '/'; } }
</script>
<!-- Banner-->
<!--
<nav class="bg-gray-800 p-2 mt-0 fixed w-full z-10 top-0">
<div class="container mx-auto flex flex-wrap items-center">
<div class="flex w-full justify-center md:justify-center text-white font-extrabold">
Now live on <a href="https://www.producthunt.com/posts/random-elon" target="_blank" class="underline">ProductHunt</a> 😺️ 🚀️ 😍️
</div>
</div>
</nav>
-->
<div class="flex flex-col items-center justify-center min-h-screen bg-gray-300 font-sans leading-normal"
style="background:url('/elon-musk.jpg'); background-size: cover; background-repeat: no-repeat;">
<div class="bg-gray-100 rounded max-w-lg w-full shadow-lg overflow-hidden">
<div class="p-4 border-b">
<p class="font-semibold text-lg mb-1 text-black">"<?php echo $quote ?>"</p>
<p class="text-grey-darker italic">— Elon Musk</p>
</div>
</div>
<div class="inline-flex mt-5">
<a href="/">
<button class="bg-orange-500 text-gray-30 font-bold py-2 px-4 rounded inline-flex items-center mx-4">
<span>Quote</span>
</button>
</a>
<a href="https://twitter.com/intent/tweet?text=<?php echo urlencode('"' . $quote . "\"\n\n -- @elonmusk via randomElon.peterthaleikis.com by @jesswallaceuk and @spekulatius1984"); ?>">
<button class="bg-blue-400 text-gray-800 font-bold py-2 px-4 rounded inline-flex items-center">
<span>Tweet</span>
</button>
</a>
</div>
<div class="absolute bottom-0 right-0 bg-gray-300 rounded-sm">
<div class="flex items-center justify-center px-3 py-3">
<p class="text-gray-700">
Made with ♥️ by
<a href="https://github.com/thecookiemonsters" target="_blank" class="text-blue-600">The Cookie
Monsters
🍪
</a>-
<a href="https://jesswallace.co/" target="_blank" class="text-blue-600">Jess Wallace </a> &
<a href="https://peterthaleikis.com" target="_blank" class="text-blue-600">
Peter Thaleikis
</a>
</p>
</div>
</div>
</div>
</body>
</html>