-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwritings.html
More file actions
81 lines (67 loc) · 2.88 KB
/
writings.html
File metadata and controls
81 lines (67 loc) · 2.88 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
<!-- 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="Thoughts, reflections, and writings on software, life, and everything in between." />
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Writings | Aearsears" />
<meta property="og:description"
content="Thoughts, reflections, and writings on software, life, and everything in between." />
<link rel="stylesheet" href="style.css" />
<title>Writings | 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>Writings</h2>
<p class="section-intro">Thoughts, reflections, and musings</p>
<!-- Add new posts here - newest first -->
<article class="post-card">
<span class="post-date">December 24, 2025</span>
<h3 class="post-title">Welcome to my writings</h3>
<p class="post-excerpt">
This is where I'll share my thoughts on software engineering, life lessons,
books I'm reading, and anything else that crosses my mind. Stay tuned for more!
</p>
<a href="./posts/welcome.html" class="read-more">Read more →</a>
</article>
<!--
To add a new post:
1. Copy posts/_template.html to posts/your-post-name.html
2. Edit the new file with your content
3. Add a new post-card here (newest first):
<article class="post-card">
<span class="post-date">Month Day, Year</span>
<h3 class="post-title">Your Post Title</h3>
<p class="post-excerpt">
Brief excerpt or summary of the post...
</p>
<a href="./posts/your-post-name.html" class="read-more">Read more →</a>
</article>
-->
<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>