-
Notifications
You must be signed in to change notification settings - Fork 66
/
index.html
234 lines (219 loc) · 8.71 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!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" />
<meta property="og:title" content="OSSPH Freefolio" />
<meta
property="og:description"
content="100% FREE Professional Portfolio Templates" />
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://i.postimg.cc/85rXg2LD/oss-ph-og.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image:alt" content="OSSPH Freefolio" />
<meta name="twitter:title" content="OSSPH Freefolio" />
<meta
name="twitter:description"
content="100% FREE Professional Portfolio Templates" />
<title>Freefolio by OSSPH</title>
<link rel="shortcut icon" href="./clean/img/logo.svg" type="image/x-icon" />
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<script>
tailwind.config = {
darkMode: "class",
};
</script>
<body class="bg-violet-200 text-violet-800">
<header class="bg-violet-500 dark:bg-[#271d3a]">
<div
class="container mx-auto px-5 py-8 flex flex-row flex-wrap gap-4 justify-between items-center">
<a href="https://ossph.org/" target="_blank"
><img
class="h-14"
src="./images/osslogo-text-white.png"
alt="OSSPH logo"
/></a>
<div class="flex items-center gap-4">
<h1
class="text-violet-900 text-3xl lg:text-5xl font-black dark:text-white">
Freefolio
</h1>
<div class="bg-red-100 h-[10px] w-[10px] rounded-full mt-3"></div>
<a
href="https://github.com/OSSPhilippines/freefolio"
class="text-violet-900 text-3xl lg:text-5xl font-black dark:text-white">
GitHub
</a>
<img
src="./images/moon.png"
alt="sun image"
id="theme-toggle"
class="border rounded-md text-center p-1 w-9 mr-4 mt-2 dark:w-8 transition-all transition-duration: 150ms; flex-1 align-center justify-center cursor-pointer hover:scale-[1.4] hover:bg-black" />
</div>
</div>
</header>
<main class="dark:bg-[#201c29]">
<div
class="container mx-auto px-5 py-24 grid md:grid-cols-2 gap-12">
<a
href="hacker"
class="relative bottom-0 hover:bottom-2 hover:transition-all flex flex-col justify-between items-start"
target="_blank"
data-aos="fade-up">
<img
src="./images/hacker.png"
alt="Hacker folio"
class="rounded-md shadow object-cover object-center h-full w-full aspect-video" />
<h2 class="text-3xl font-bold mt-2 dark:text-white">Hacker</h2>
</a>
<a
href="indify"
class="relative bottom-0 hover:bottom-2 hover:transition-all flex flex-col justify-between items-start"
target="_blank"
data-aos="fade-up">
<img
src="./images/indify.png"
alt="Indify folio img"
class="rounded-md shadow object-cover object-center h-full w-full aspect-video" />
<h2 class="text-3xl font-bold mt-2 dark:text-white">Indify</h2>
</a>
<a
href="plain"
class="relative bottom-0 hover:bottom-2 hover:transition-all flex flex-col justify-between items-start"
target="_blank"
data-aos="fade-up">
<img
src="./images/plain.png"
alt="Plain folio"
class="rounded-md shadow object-cover object-center h-full w-full aspect-video" />
<h2 class="text-3xl font-bold mt-2 dark:text-white">Plain</h2>
</a>
<a
href="clean"
class="relative bottom-0 hover:bottom-2 hover:transition-all flex flex-col justify-between items-start"
target="_blank"
data-aos="fade-up">
<img
src="./images/clean.png"
alt="Clean folio"
class="rounded-md shadow object-cover object-center h-full w-full aspect-video" />
<h2 class="text-3xl font-bold mt-2 dark:text-white">Clean</h2>
</a>
<a
href="beginner"
class="relative bottom-0 hover:bottom-2 hover:transition-all flex flex-col justify-between items-start"
target="_blank"
data-aos="fade-up">
<img
src="./images/beginner.png"
alt="Beginner folio"
class="rounded-md shadow object-cover object-center h-full w-full aspect-video" />
<h2 class="text-3xl font-bold mt-2 dark:text-white">Beginner</h2>
</a>
<a
href="outlines"
class="relative bottom-0 hover:bottom-2 hover:transition-all flex flex-col justify-between items-start"
target="_blank"
data-aos="fade-up">
<img
src="./images/outlines.png"
alt="Outlines folio"
class="rounded-md shadow object-cover object-center h-full w-full aspect-video" />
<h2 class="text-3xl font-bold mt-2 dark:text-white">Outlines</h2>
</a>
<a
href="simple"
class="relative bottom-0 hover:bottom-2 hover:transition-all flex flex-col justify-between items-start"
target="_blank"
data-aos="fade-up">
<img
src="./images/simple.PNG"
alt="Simple folio"
class="rounded-md shadow object-cover object-center h-full w-full aspect-video" />
<h2 class="text-3xl font-bold mt-2 dark:text-white">Simple</h2>
</a>
<a
href="deepsea"
class="relative bottom-0 hover:bottom-2 hover:transition-all flex flex-col justify-between items-start"
target="_blank"
data-aos="fade-up">
<img
src="./images/deepsea.png"
alt="Deepsea folio"
class="rounded-md shadow object-cover object-center h-full w-full aspect-video" />
<h2 class="text-3xl font-bold mt-2 dark:text-white">Deep Sea</h2>
</a>
<a
href="dark-hack"
class="relative bottom-0 hover:bottom-2 hover:transition-all flex flex-col justify-between items-start"
target="_blank"
data-aos="fade-up">
<img
src="./images/dark-hack.png"
alt="Dark Hack folio"
class="rounded-md shadow object-cover object-center h-full w-full aspect-video" />
<h2 class="text-3xl font-bold mt-2 dark:text-white">Dark Hack</h2>
</a>
<a
href="ingolfur"
class="relative bottom-0 hover:bottom-2 hover:transition-all flex flex-col justify-between items-start"
target="_blank"
data-aos="fade-up">
<img
src="./images/ingolfur.png"
alt="Ingólfur"
class="rounded-md shadow object-cover object-center h-full w-full aspect-video" />
<h2 class="text-3xl font-bold mt-2 dark:text-white">Ingólfur</h2>
</a>
<a
href="anime"
class="relative bottom-0 hover:bottom-2 hover:transition-all flex flex-col justify-between items-start"
target="_blank"
data-aos="fade-up">
<img
src="./images/anime.png"
alt="Anime"
class="rounded-md shadow object-cover object-center h-full w-full aspect-video" />
<h2 class="text-3xl font-bold mt-2 dark:text-white">Anime</h2>
</a>
<a
href="easy"
class="relative bottom-0 hover:bottom-2 hover:transition-all flex flex-col justify-between items-start"
target="_blank"
data-aos="fade-up">
<img
src="./images/easy.png"
alt="Anime"
class="rounded-md shadow object-cover object-center h-full w-full aspect-video" />
<h2 class="text-3xl font-bold mt-2 dark:text-white">easy</h2>
</a>
</div>
</main>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
once: true,
delay: 0,
});
</script>
<script>
var theme_toggle = document.getElementById("theme-toggle");
theme_toggle.addEventListener("click", () => {
document.body.classList.toggle("dark");
if (document.body.classList.contains("dark")) {
theme_toggle.src = "./images/sun.png";
} else {
theme_toggle.src = "./images/moon.png";
}
});
</script>
</body>
</html>