-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
86 lines (81 loc) · 4.15 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
<link rel="stylesheet" href="styles/styles.scss" />
<title>SWAPI Characters Gallery</title>
</head>
<body>
<div id="modalRoot"></div>
<div id="loaderRoot"></div>
<header>
<div class="collapse bg-dark" id="navbarHeader">
<div class="container">
<div class="row">
<div class="col-sm-8 col-md-7 py-4">
<h4 class="text-white">About</h4>
<p class="text-muted">This is a gallery of Star Wars Charachters, created with SWAPI.</p>
</div>
<div class="col-sm-4 offset-md-1 py-4">
<h4 class="text-white">Gallery Details</h4>
<ul class="list-unstyled">
<li><a href="https://github.com/vieraboschkova/swapi-gallery" class="text-white">Check the source code</a></li>
<li><a href="https://swapi.dev/documentation" class="text-white">Check out SWAPI</a></li>
<li><a href="mailto:[email protected]" class="text-white">Email me</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="navbar navbar-dark bg-dark shadow-sm">
<div class="container">
<a href="#" class="navbar-brand d-flex align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" aria-hidden="true" class="me-2" viewBox="0 0 24 24"><path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"/><circle cx="12" cy="13" r="4"/></svg>
<strong>SWAPI Gallery</strong>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarHeader" aria-controls="navbarHeader" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>
</header>
<main>
<section class="py-5 text-center container">
<div class="row py-lg-5">
<div class="col-lg-6 col-md-8 mx-auto">
<h1 class="fw-light">STAR WARS Charactes</h1>
<p class="lead text-muted">Star Wars Fan? Your best friend only talks about Solo, Han Solo? Check out the full Star Wars Charachters Gallery. Can you name them all? Try Star Wars Quiz!</p>
<p>
<a href="https://front-znad-zatoki.github.io/Star-Wars-Quiz/" class="btn btn-primary my-2">Take me to Star Wars Quiz!</a>
<a href="https://github.com/vieraboschkova/swapi-gallery" class="btn btn-secondary my-2">Let me see the code first</a>
</p>
</div>
</div>
</section>
<div class="album py-5 bg-light">
<div class="container">
<div id="galleryRoot" class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
</div>
</div>
</div>
<nav aria-label="Page navigation" class="py-5 bg-light">
<ul class="pagination justify-content-center"></ul>
</nav>
</main>
<footer class="text-muted py-5">
<div class="container">
<p class="float-end mb-1">
<a href="#">Back to top</a>
</p>
<p class="mb-1">
<a href="https://getbootstrap.com/docs/5.0/examples/album/">Album example</a> is © Bootstrap, but I customized it myself!
</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8" crossorigin="anonymous"></script>
<script src="./src/index.js"></script>
</body>
</html>