-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (63 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=Roboto:wght@300;400;500;700;900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/src/styles/global.css" />
<script src="/src/app.js" defer type="module"></script>
<title>Game Center</title>
</head>
<body>
<aside>
<img src="/assets/logotype.svg" alt="Game Center" />
<hr />
<p>Genres</p>
<a class="allGames link" href="/all-games">All games</a>
</aside>
<main></main>
<!-- TEMPLATES -->
<template id="navBar">
<div class="goBack">
<!-- <img src="/src/assets/icons/goBack.svg" alt="" /> -->
</div>
<div class="favoriteList">
<span class="count"></span>
<img src="/assets/icons/favorite.svg" alt="" />
</div>
<input class="searchInput" type="text" placeholder="Search" />
</template>
<template id="gameGenres">
<ul class="genres"></ul>
</template>
<template id="gameList">
<div class="template">
<h2></h2>
<div class="list"></div>
</div>
</template>
<template id="gameCard">
<div class="card">
<img src="" alt="" />
<div class="content">
<ul class="platforms"></ul>
<a href="" class="title link"></a>
<div class="releaseDate">
<span class="releaseDateTitle">Release date:</span>
<span class="releaseDateValue"></span>
</div>
<div class="relatedGenres">
<span class="relatedGenresTitle">Genres:</span>
<span class="relatedGenresValue"></span>
</div>
<button class="favoriteButton"></button>
</div>
</div>
</template>
</body>
</html>