-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
63 lines (63 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Runbhumi - Team</title>
<!-- CSS only -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.1/css/bootstrap.min.css"
integrity="sha384-VCmXjywReHh4PwowAiWNagnWcLhlEJLA5buUprzK8rxFgeH0kww/aWY76TfkUoSX"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./assets/css/main.css" />
</head>
<body>
<div class="jumbotron">
<div class="display-3 text-center">Our Team</div>
</div>
<div class="container d-flex justify-content-center flex-wrap">
<div
v-for="member in members"
class="card m-4"
style="width: 13rem; max-width: 300px;"
>
<img class="card-img-top" :src=`./assets/images/${member.profile_pic}`
alt="" />
<div class="card-body p-2 d-flex justify-content-between align-items-center flex-column">
<h4 class="card-title text-center">{{member.name}}</h4>
<div class="links d-flex justify-content-between align-items-center">
<a class="mx-2" style="text-decoration: none;color:#333;" :href=`https://github.com/${member.github_link}`><i class="fab fa-github fa-2x"></i></a>
<a class="mx-2" style="text-decoration: none;color:#ff7315;" :href=`mailto:${member.email}`><i class="far fa-envelope fa-2x"></i></a>
<a class="mx-2" style="text-decoration: none;color:#0e76a8;" :href=`https://linkedin.com/in/${member.linkedIn_link}`><i class="fab fa-linkedin fa-2x"></i></a>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="main.js"></script>
<!-- JS, Popper.js, and jQuery -->
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.1/js/bootstrap.min.js"
integrity="sha384-XEerZL0cuoUbHE4nZReLT7nx9gQrQreJekYhJD9WNWhH8nEW+0c5qq7aIo2Wl30J"
crossorigin="anonymous"
></script>
</body>
</html>