-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (48 loc) · 2.25 KB
/
Copy pathindex.html
File metadata and controls
64 lines (48 loc) · 2.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Open Resources</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link href="https://fonts.googleapis.com/css2?family=MuseoModerno:wght@600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,300&display=swap" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="src/css/style.css">
<link type="text/css" rel="stylesheet" href="src/libs/fontawesome/css/all.min.css">
<link type="text/css" rel="stylesheet" href="src/libs/bootstrapvue/bootstrap.min.css" />
<link type="text/css" rel="stylesheet" href="src/libs/bootstrapvue/bootstrap-vue.min.css" />
<script src="src/libs/bootstrapvue/bootstrap-vue2.1.5.js"></script>
<script src="src/js/vue.min.js"></script>
<script src="src/js/axios.min.js"></script>
</head>
<body>
<div class="nav-bar">
<!--<a href="#" class="navbar-left"><img src="favicon.png"></a>-->
<span>Open Resources</span>
</div>
<div id="app">
<div class="search-wrapper">
<i class="fas fa-search"></i><input type="text" v-model="search" placeholder="Search Resource" />
<label>Search Resource:</label>
</div>
<div class="wrapper">
<div class="card" v-for="resource in filteredList">
<div class="cardHeader">
<a class="icon" v-bind:href="resource.link" target="_blank">
<img v-bind:src="resource.img" @error="imageUrlDefault" ref="thumb" />
</a>
</div>
<div class="cardFooter">
<a v-bind:href="resource.link" class="card-title">{{ resource.title }}</a>
<small> {{ resource.desc }} </small>
</div>
</div>
</div>
</div>
<div class="d-flex justify-content-center mt-4">
<a class="text-muted" href="license">This Collection is Offered As Is (MIT License)</a>
</div>
<script src="src/js/app.js"></script>
</body>
</html>