-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdates.html
94 lines (86 loc) · 5.07 KB
/
updates.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
<!DOCTYPE html>
<html>
<head>
<title>Anthony's website updates</title>
<link rel="stylesheet" type="text/css" href="index.css">
<script src="index.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Link to a CSS Reset or Normalize CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
</head>
<body>
<div class = "container_body" style="display:flex">
<button class="menu-btn" onclick="toggleNav()">☰</button>
<div class="container_body" style="display:flex">
<div class="container_left" id="sideNav">
<a class="remove-decor" href="index.html"><div class="left_button red">Home</div></a>
<a class="remove-decor" href="projects.html"><div class="left_button red">Projects</div></a>
<a class="remove-decor" href="more.html"><div class="left_button blue">More about me</div></a>
<a class="remove-decor" href="math.html"><div class="left_button blue">My math stuff</div></a>
<a class="remove-decor" href="branding.html"><div class="left_button orange">About my brand</div></a>
<a class="remove-decor" href="misc.html"><div class="left_button orange">Miscellaneous stuff</div></a>
<a class="remove-decor" href="updates.html"><div style="font-weight:700; color:#ff0" class="left_button gray">Site updates</div></a>
</div>
<div class = "container_main" style="padding: 0 5px">
<p class = "body_text">My website is still evolving into something better. To make things more transparent, I have decided to add a changelog here.</p>
<h2>β1.4.1 - Added useful links (12/23/2024)</h2>
<ul>
<li class = "body_text_s2">Applied formatting fixes to the "My math stuff" page</li>
<li class = "body_text_s2">Added and reordered some useful links on the "Miscellaneous stuff" page</li>
</ul>
<h2>β1.4 - Added useful links (12/20/2024)</h2>
<ul>
<li class = "body_text_s2">Implemented the "Miscellaneous stuff" page which contains all the links that might be useful to you</li>
<li class = "body_text_s2">Created an outline for the "My math stuff" page - be warned, that page might be long!</li>
</ul>
<h2>β1.3 - Added projects and resume (12/6/2024)</h2>
<ul>
<li class = "body_text_s2">Added four projects in my projects page, in addition to my resume</li>
<li class = "body_text_s2">Made minor changes to the left navigation menu to highlight active page</li>
<li class = "body_text_s2">Updated bio, improved on Tetris and played new games 🙂</li>
</ul>
<h2>β1.2 - Updated profile picture and expanded bio (10/6/2024)</h2>
<ul>
<li class = "body_text_s2">Included a hobbies section. Because after all, it is not just about school and work, right?</li>
<li class = "body_text_s2">Updated my profile picture</li>
</ul>
My resume and my project pages will be included in the next update. Please stay tuned!
<h2>β1.1.1 - Minor changes (10/2/2024)</h2>
<ul>
<li class = "body_text_s2">Added the "Site updates" page.</li>
<li class = "body_text_s2">Navigation bar fixes on mobile</li>
</ul>
<h2>β1.1 - Responsiveness Improvements (10/2/2024)</h2>
<ul>
<li class = "body_text_s2">Made improvements to the navigation bar - it is now responsive!</li>
<li class = "body_text_s2">Added dynamic age to my "Home" page, it auto-updates now!</li>
<li class = "body_text_s2">Updated some information on my page to keep things up to date</li>
</ul>
I know that there are a lot of information that is missing, so please stay tuned! I am unable to provide a timeline when the site will be completed, but I will try to update it as much as possible.
<h2>β1.0 - Initial Launch (1/30/2023)</h2>
This initial launch of my site is in "BETA" stage. At that time, I have only included the "Index" page, with navigation items to other pages. These do not work at the moment as these pages are still in planning stages, but will be included in the future.
</div>
<script>
console.log('Script loaded'); // Check if the script is loaded
document.addEventListener('DOMContentLoaded', function() {
const menuBtn = document.querySelector('.menu-btn');
const containerLeft = document.querySelector('.container_left');
console.log('Menu button:', menuBtn); // Check if button is found
console.log('Container left:', containerLeft); // Check if container is found
menuBtn.addEventListener('click', function(event) {
console.log('Menu button clicked'); // Check if click event is firing
containerLeft.classList.toggle('active');
event.stopPropagation(); // Stop event from propagating to the document
});
document.addEventListener('click', function(event) {
if (!containerLeft.contains(event.target) && !menuBtn.contains(event.target)) {
console.log('Outside clicked'); // Check if outside click is detected
containerLeft.classList.remove('active');
}
});
});
</script>
</div>
</body>
</html>