-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
222 lines (212 loc) · 7.31 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
rel="stylesheet"
/>
<link href="./styles/main.css" rel="stylesheet" type="text/css" />
<title>Mariya's Blog</title>
</head>
<body>
<div class="main-container">
<div class="blog-title">
<div class="blog-name">
<div class="blog-heading">
<h1><em>MTs Notes</em></h1>
</div>
<div class="header-right">
<a class="active" href="index.html"><i class="fas fa-home"></i></a>
<a class="active" href="/blog/te-houtaewa-template.html"
>Te-Houtaewa</a
>
<div>
<button id="dark-mode-toggle" class="round-button">
<i id="toggle-icon" class="fas fa-eye"></i>
</button>
</div>
</div>
</div>
</div>
<div class="blog-content">
<div class="content-main">
<div class="blog-detail">
<div class="blog-info">
<h1>
<em
><strong>Hello and Welcome!</strong> Insights from My Ongoing
Journey of Growth.</em
>
</h1>
<p>
A little space where I share my adventures in learning, growing,
and blooming!
</p>
</div>
</div>
<div class="blog-content-detail">
<button class="accordion"><u class="sub-head tech-detail-head">Technical Skill</u></button>
<div class="panel">
<p>
<ul class="tech-list">
<li>
<a href="/blog/html-css.html" class="tech-one"
>CSS Concepts</a
>
</li>
<li>
<a href="/blog/javascript-dom.html" class="tech-one"
>JS-DOM</a
>
</li>
<li>
<a href="/blog/problem-solving.html" class="tech-one"
>Problem-solving</a
>
</li>
</ul>
</p>
</div>
<button class="accordion"><u class="sub-head hum-detail-head">Human Skill</u></button>
<div class="panel">
<p>
<ul class="tech-list">
<li>
<a href="/blog/identity-values.html" class="tech-one"
>Identity Values</a
>
</li>
<li>
<a href="/blog/learning-plan.html" class="tech-one"
>Learning Plan</a
>
</li>
<li>
<a href="/blog/emotional-intelligence.html" class="tech-one"
>Emotional-intelligence</a
>
</li>
<li>
<a href="/blog/neuroplasticity.html" class="tech-one"
>Neuroplasticity</a
>
</li>
<li>
<a href="/blog/te-whare-tapa-wha.html" class="tech-one"
>Te Whare Tapa Whā</a
>
</li>
<li>
<a href="/blog/foundations-reflection.html" class="tech-one"
>Foundations Reflection</a
>
</li>
</ul>
</p>
</div>
<button class="accordion"><u class="sub-head hum-detail-head">Developments</u></button>
<div class="panel">
<p>
<ul class="tech-list">
<li>
<a href="/blog/javascript-cafe/index.html" class="tech-one"
>Javascript-cafe</a
>
</li>
<li>
<a href="https://mariyatom.github.io/tic-tac-toe/" class="tech-one"
>Tic-tac-toe</a
>
</li>
<li>
<a href="https://mariyatom.github.io/javascript-carnival/" class="tech-one"
>Javascript-carnival</a
>
</li>
<li>
<a href="https://mariyatom.github.io/calculator/" class="tech-one"
>Calculator</a
>
</li>
<li>
<a href="https://mariyatom.github.io/minesweeper/" class="tech-one"
>Minesweeper</a
>
</li>
<li>
<a href="https://mariyatom.github.io/magicJs/" class="tech-one"
>MagicJs</a
>
</li>
</ul>
</p>
</div>
<button class="accordion"><u class="sub-head hum-detail-head">Personal project</u></button>
<div class="panel">
<p>
<ul class="tech-list">
<li>
<a href="https://mariyatom.github.io/lil-book-club/index.html" class="tech-one"
>LIL BOOK CLUB</a
>
</li>
</ul>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="blog-footer">
<div class="footer">
<div class="footer-right">
<p>© 2025 Mariya's Blog. All rights reserved.</p>
</div>
<div class="github-link github-btn">
<a
href="https://github.com/mariyatom/mariyatom.github.io"
target="_blank"
class="github-link"
>
<span class="icon is-small">
<i class="fab fa-github"></i>
</span>
<span>GitHub</span>
</a>
</div>
</div>
</div>
<script>
// Dark mode toggle button
const toggleButton = document.getElementById('dark-mode-toggle')
const headerDiv = document.querySelector('.blog-title')
const mainContainerDiv = document.querySelector('.main-container')
toggleButton.addEventListener('click', () => {
document.body.classList.toggle('dark-mode')
headerDiv.classList.toggle('dark-mode')
mainContainerDiv.classList.toggle('dark-mode')
if (document.body.classList.contains('dark-mode')) {
toggleButton.classList.replace('fa-eye', 'fa-eye-slash')
} else {
toggleButton.classList.replace('fa-eye-slash', 'fa-eye')
}
})
// Toggle accordion
var acc = document.getElementsByClassName('accordion')
var i
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener('click', function () {
this.classList.toggle('active')
var panel = this.nextElementSibling
if (panel.style.maxHeight) {
panel.style.maxHeight = null
} else {
panel.style.maxHeight = panel.scrollHeight + 'px'
}
})
}
</script>
</body>
</html>