-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathproject.ejs
100 lines (84 loc) · 3.95 KB
/
project.ejs
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IWoC Project Page</title>
<link rel="icon" type="image/x-icon" href="../public/img/Season_2/Iwoc_S2.png" />
<script src="https://cdn.tailwindcss.com"></script>
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous" /> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="../public/css/particle.css" />
<link rel="stylesheet" href="../public/css/navbar.css" />
<link rel="stylesheet" href="../public/css/project.css" />
<link rel="stylesheet" href="../public/css/logo.css" />
</head>
<body>
<script type="text/javascript" src="https://storage.yandexcloud.net/slaylines/uploads/snowflakes.min.1.0.0.js" defer></script>
<div id="particles-js"></div>
<!-- navbar -->
<div class="navigation-wrap start-header start-style">
<div class="container">
<div class="row">
<div class="col-12">
<nav class="navbar navbar-expand-md navbar-light" style="margin-left: 20px;">
<i class="fa fa-arrow-left" style="font-size: 25px; color: rgb(135, 178, 206); cursor: pointer;"
onclick="window.location.href='/'"></i>
</div>
</div>
</div>
</div>
<!-- logo -->
<div data-aos="zoom-in">
<div class="logo" id="logo">
<img src="../public/img/Season_2/iwoc logo (1).png" class="mainlogo" style="width: 30%; height: 30%;" />
</div>
</div>
<div class="projecttitle">Projects</div>
<!-- cards -->
<div class="projectsGrid">
<% for (var i=0; i < project.length; i++) { %>
<div data-aos="zoom-in">
<div class="projectCard1" onclick="window.open('<%= project[i].projectUrl %>','mywindow');" style="cursor: pointer;">
<div class="projectCard2" >
<div class="text-center px-3 pb-6 pt-2">
<h3 class="text-white text-xl bold font-sans" style="background: -webkit-linear-gradient(163deg,#00ff75 50%, #0c5ee2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">
<strong><%= project[i].projectName %></strong> <i class="fa fa-github" style="font-size:30px;color:white"
onclick="window.href.location='<%= project[i].repoUrl %>'"></i>
</h3>
<p class="mt-2 font-sans font-light text-white">
<%= project[i].description %>
</p>
</div>
<div class="pb-3 text-white techstack" style="position: absolute; bottom: 2rem;">
<% for(var j=0; j < project[i].language.length; j++) { %>
<div class="text-center tech" style="background: #00ff75; color: black;">
<span style="width: max-content; padding: 15%;">
<%= project[i].language[j] %>
</span>
</div>
<% }%>
</div>
</div>
</div>
</div>
<%}%>
</div>
<div class="projFooter" style="text-align: center; padding: 10px; background: #00ff75;">
<p class="footText"> Make the contributions rain! 🌧️ </p>
</div>
<script src="../public/js/click_snow.js"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.js"></script>
<script src="../public/js/particles-project.js"></script>
<script src="../public/js/particle-project.js"></script>
<script src="../public/js/navbar.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src="../public/js/snowflakes.js"></script>
<script>
AOS.init();
</script>
</body>
</html>