-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.html
More file actions
249 lines (213 loc) · 8.42 KB
/
Copy pathgames.html
File metadata and controls
249 lines (213 loc) · 8.42 KB
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
<!-- Credit to https://github.com/giotsere/minimalist-portfolio -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="description" content="My yearly gaming journey - games I've played and reviews." />
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Games | Aearsears" />
<meta property="og:description" content="My yearly gaming journey - games I've played and reviews." />
<link rel="stylesheet" href="style.css" />
<title>Games | Aearsears</title>
<link rel="shortcut icon" type="image/jpg" href="favicon-32x32.png" />
</head>
<body>
<div class="single-column">
<a href="./index.html" class="back-link">← Back to Home</a>
<h2>Games</h2>
<p class="section-intro">I typically play one video game a year during the winter holidays. Gives me something
to look
forward to, instead of wasting time on Dota 2, league of legends, maplestory and Team Fortress 2. X))</p>
<!-- Game Reviews Section -->
<h3>🎮 Reviews</h3>
<p>In-depth thoughts on games I've completed.</p>
<div class="reviews-grid">
<!-- Add new reviews here - newest first -->
<article class="review-card">
<span class="review-rating">⭐ 8/10</span>
<h4 class="review-title">2025: Ghost of Tsushima</h4>
<p class="review-excerpt">
A visually stunning open-world samurai adventure with a compelling story
and engaging combat mechanics.
</p>
<a href="./reviews/ghostoftsushima.html" class="read-more">Read review →</a>
</article>
<article class="review-card">
<span class="review-rating">⭐ 10/10</span>
<h4 class="review-title"> 2023: The Witcher 3: Wild Hunt</h4>
<p class="review-excerpt">
An entire game inside a game. Hearts of Stone and Blood and Wine
are masterpieces in their own right.
</p>
<a href="./reviews/witcher3.html" class="read-more">Read review →</a>
</article>
<!-- Template for adding more reviews:
<article class="review-card">
<span class="review-rating">⭐ X/10</span>
<h4 class="review-title">Game Title</h4>
<p class="review-excerpt">
Brief excerpt of your review...
</p>
<a href="./reviews/game-name.html" class="read-more">Read review →</a>
</article>
-->
</div>
<!-- Yearly Games Section -->
<h3>2031</h3>
<ul class="game-list">
<li>
<span class="game-status playing">✓</span>
<strong>Cyberpunk 2077 if I can find a Third person mod</strong>
<span class="game-platform">PC</span>
</li>
</ul>
<h3>2030</h3>
<ul class="game-list">
<li>
<span class="game-status playing">✓</span>
<strong>Spiderman and Spiderman: Miles Morales and maybe Stray</strong>
<span class="game-platform">PC</span>
</li>
</ul>
<h3>2029</h3>
<ul class="game-list">
<li>
<span class="game-status playing">✓</span>
<strong>Horizon Forbidden West</strong>
<span class="game-platform">PC</span>
</li>
</ul>
<h3>2028</h3>
<ul class="game-list">
<li>
<span class="game-status playing">✓</span>
<strong>Stellar Blade or God of War</strong>
<span class="game-platform">PC</span>
</li>
</ul>
<h3>2027</h3>
<ul class="game-list">
<li>
<span class="game-status playing">✓</span>
<strong>Clair Obscur: Expedition 33</strong>
<span class="game-platform">PC</span>
</li>
</ul>
<h3>2026</h3>
<ul class="game-list">
<li>
<span class="game-status playing">✓</span>
<strong>Black Myth: Wukong</strong>
<span class="game-platform">PC</span>
</li>
</ul>
<h3>2025</h3>
<ul class="game-list">
<li>
<span class="game-status completed">✓</span>
<strong>Ghost of Tsushima</strong>
<span class="game-platform">PC</span>
</li>
</ul>
<h3>2024</h3>
<ul class="game-list">
<li>
<span class="game-status completed">✓</span>
<strong>Hogwarts Legacy</strong>
<span class="game-platform">PC</span>
</li>
</ul>
<h3>2023</h3>
<ul class="game-list">
<li>
<span class="game-status completed">✓</span>
<strong>The Witcher 3</strong>
<span class="game-platform">PC</span>
</li>
</ul>
<h3>2022</h3>
<ul class="game-list">
<li>
<span class="game-status completed">✓</span>
<strong>Horizon Zero Dawn, Kena Bridge of Spirits</strong>
<span class="game-platform">PC</span>
</li>
</ul>
<h3>2021</h3>
<ul class="game-list">
<li>
<span class="game-status completed">✓</span>
<strong>The Legend of Zelda: Breath of the Wild, Immortals Fenyx Rising</strong>
<span class="game-platform">PC</span>
</li>
</ul>
<h3>2020</h3>
<ul class="game-list">
<li>
<span class="game-status completed">✓</span>
<strong>Watch Dogs 2</strong>
<span class="game-platform">PC</span>
</li>
</ul>
<h3>2019</h3>
<ul class="game-list">
<li>
<span class="game-status completed">✓</span>
<strong>Batman Arkham Night</strong>
<span class="game-platform">PC</span>
</li>
</ul>
<h3>2018</h3>
<ul class="game-list">
<li>
<span class="game-status completed">✓</span>
<strong>Okami</strong>
<span class="game-platform">PC</span>
</li>
</ul>
<h3>2017</h3>
<ul class="game-list">
<li>
<span class="game-status completed">✓</span>
<strong>AZBU, Little Nightmares, INSIDE</strong>
<span class="game-platform">PC</span>
</li>
</ul>
<!--
Status Legend:
✓ completed - Finished the game
▶ playing - Currently playing
✗ dropped - Stopped playing / didn't finish
To add a new year, copy this template:
<h3>📅 YEAR</h3>
<ul class="game-list">
<li>
<span class="game-status completed">✓</span>
<strong>Game Name</strong>
<span class="game-platform">Platform</span>
</li>
</ul>
-->
<footer class="site-footer">
<p>© 2025 Aearsears. Built with ☕ and curiosity.</p>
</footer>
</div>
<button class="back-to-top" id="backToTop" aria-label="Back to top">↑</button>
<script>
const backToTopBtn = document.getElementById('backToTop');
window.addEventListener('scroll', () => {
if (window.scrollY > 300) {
backToTopBtn.classList.add('visible');
} else {
backToTopBtn.classList.remove('visible');
}
});
backToTopBtn.addEventListener('click', () => {
window.scrollTo({ top: 0, behavior: 'smooth' });
});
</script>
</body>
</html>