-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.html
95 lines (91 loc) · 5.06 KB
/
archive.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>title</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
<link href="css/all.css" rel="stylesheet">
</head>
<body>
<!-- START NAV -->
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle active" href="#" id="navbarDarkDropdownMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">Archive</a>
<ul class="dropdown-menu dropdown-menu-dark" aria-labelledby="navbarDarkDropdownMenuLink">
<li><a class="dropdown-item" href="archive.html">All Archived Posts</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="./archive/walkthrough.html">Red Dead Redemption Walkthrough</a></li>
<li><a class="dropdown-item" href="./archive/devStories.html">Red Dead Redemption Development Stories</a></li>
</ul>
</li>
</div>
</div>
</nav>
<!-- END NAV -->
<div class="container">
<div class="col-md-3 mt-3">
<button type="button" class="btn btn-outline-primary tag" data-bs-toggle="button" onclick='filterFunc(this);deactivateButtons(this)'><i class="fas fa-tags"></i>Red Dead Redemption</button>
<button type="button" class="btn btn-outline-primary tag" data-bs-toggle="button" onclick='filterFunc(this);deactivateButtons(this)'><i class="fas fa-tags"></i>Open World</button>
<button type="button" class="btn btn-outline-primary tag" data-bs-toggle="button" onclick='showAll(this);deactivateButtons(this)'><i class="fas fa-tags"></i>All</button>
</div>
<!-- Archive Entry -->
<div class="row mt-3 archive-entry">
<div class="col-md-12 mx-auto d-block">
<div class="card" onclick="location.href='walkthrough.html';" style="cursor: pointer;">
<div class="row g-0">
<div class="col-md-4">
<img class="img-thumbnail rounded-3" src="images/reddeadimage.jpg" alt="Red Dead Redemption">
</div>
<div class="col-md-6">
<div class="card-body">
<h5 class="card-title">Red Dead Redemption Walkthrough</h5>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
<div class="col-md-2 border-start ps-2 tag-container">
<a href="#" class="badge rounded-pill bg-primary text-decoration-none text-wrap">Red Dead Redemption</a>
<a href="#" class="badge rounded-pill bg-primary text-decoration-none text-wrap">First Person Shooter</a>
</div>
</div>
</div>
</div>
</div>
<!-- End archive entry -->
<div class="row mt-3 archive-entry">
<div class="col-md-12 mx-auto d-block">
<div class="card" onclick="location.href='devStories.html';" style="cursor: pointer;">
<div class="row g-0">
<div class="col-md-4">
<img class="img-thumbnail rounded-3" src="images/rockstarlogo.jpg" alt="Red Dead Redemption">
</div>
<div class="col-md-6">
<div class="card-body">
<h5 class="card-title">Red Dead Redemption Development Stories</h5>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
<div class="col-md-2 border-start ps-2 tag-container">
<a href="#" class="badge rounded-pill bg-primary text-decoration-none text-wrap">Open World</a>
<a href="#" class="badge rounded-pill bg-primary text-decoration-none text-wrap">Boredom Buster</a>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<p>Copyright 2020</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>