-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.html
67 lines (62 loc) · 3.08 KB
/
project.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
<!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">
<link rel="stylesheet" href="../styles.css">
<link rel="stylesheet" href="../project.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible&display=swap" rel="stylesheet">
<title>{{projectName}}</title>
<link rel="shortcut icon" href="../assets/logo.png" type="image/x-icon">
</head>
<body>
<div class="content-wrapper">
<div class="header">
<div class="header-container">
<nav class="hamburger-nav noSelect">
<button class="nav-toggle" onclick="toggleNav();" aria-label="toggle navigation">
<span class="hamburger"></span>
<span class="hamburger hamburger-middle"></span>
<span class="hamburger"></span>
</button>
</nav>
<a href="https://teamdiopside.nl/" class="noSelect logo"><img src="../assets/diopside/Title.png" alt="Team Diopside" class="logo"></a>
<ul class="nav-links mobile-hidden">
<a href="https://teamdiopside.nl/" class="link button-mobile-hidden">Home</a>
<a href="https://docs.teamdiopside.nl/" class="link button-mobile-hidden">Docs</a>
</ul>
</div>
</div>
<main id="main">
<div class="projects">
<div class="project-info">
<div class="project-title">
<img src="../assets/{{projectId}}/icon.png" alt="{{projectName}}" class="project-image big-project-image">
<h1>{{projectName}}</h1>
</div>
<p>{{projectInfo}}</p>
</div>
<section id="download" class="container">
<h2>Download</h2>
<div class="project-grid" id="downloads"></div>
</section>
</div>
</main>
</div>
<footer>
<div class="social-links">
<a href="https://teamdiopside.nl/discord/" target="_blank" class="link noSelect">Discord</a>
<a href="https://github.com/TeamDiopside" target="_blank" class="link noSelect">GitHub</a>
<a href="https://modrinth.com/collection/Sh6meNmq" target="_blank" class="link noSelect">Modrinth</a>
<a href="https://www.curseforge.com/members/team_diopside/projects" target="_blank" class="link noSelect">CurseForge</a>
<a href="https://larsmans.nl/" target="_blank" class="link noSelect">Lars</a>
<a href="https://curryducker.nl/" target="_blank" class="link noSelect">Curry</a>
</div>
© 2024 Team Diopside. All rights reserved.
</footer>
<script src="../script.js"></script>
</body>
</html>