-
Notifications
You must be signed in to change notification settings - Fork 74
/
index.html
69 lines (42 loc) · 2.08 KB
/
index.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hacktoberfest 2018 Finder</title>
<link rel="stylesheet" href="/app.css">
<meta charset="UTF-8">
<meta name="description" content="Hacktoberfest Finder helps you find issues which you could help fix.">
<meta name="keywords" content="">
<meta name="author" content="Duncan McClean">
<meta name="theme-color" content="#582d41">
<meta property="og:title" content="Hacktoberfest 2018 Finder">
<meta property="og:description" content="Hacktoberfest Finder helps you find issues which you could help fix.">
<meta property="og:image" content="">
<meta property="og:url" content="https://hackerfest-finder.netlify.com/">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
</head>
<body>
<div class="bg-crimson" id="app">
<header class="container mx-auto text-center mb-8">
<img src="/header.png" alt="Hacktoberfest 2018" width="500px">
</header>
<section class="container mx-auto finder">
<h1 class="text-cyan text-5xl headline text-center font-thin tracking-wide mb-8"> Hacktoberfest Issue Finder </h1>
<div class="results grid">
<div v-for="result in results" class="result bg-white p-2 rounded headline">
<a class="text-black no-underline" :href="result.html_url">
<h1 class="text-center text-3xl mb-4" v-html="result.title"> </h1>
</a>
</div>
</div>
</section>
<footer class="container mx-auto mt-16 p-8">
<img src="digitalOcean.png" _alt="Digital Ocean"/>
<img src="github.png" _alt="Github" />
<img src="twillio.png" _alt="Twillio" />
<p class="text-white text-center font-thin headline"> Unofficial site created by <a class="text-white no-underline" href="http://duncan.mcclean.co.uk">Duncan McClean</a>. </p>
</footer>
</div>
<script src="/app.js"> </script>
</body>
</html>