Skip to content

Commit 3db4a9d

Browse files
committed
a
1 parent d7640bc commit 3db4a9d

24 files changed

Lines changed: 15 additions & 5934 deletions

assets/data/graph.json

Lines changed: 0 additions & 5728 deletions
This file was deleted.

assets/data/photos.json

Lines changed: 0 additions & 26 deletions
This file was deleted.

assets/data/tracks.json

Lines changed: 14 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -170,135 +170,67 @@
170170
},
171171
{
172172
"id": "40",
173-
"title": "Dedublüman - Sen Bilmezsin"
174-
},
175-
{
176-
"id": "41",
177-
"title": "Duman - Helal Olsun"
178-
},
179-
{
180-
"id": "42",
181-
"title": "Duman - Yürekten"
182-
},
183-
{
184-
"id": "43",
185173
"title": "Dönence"
186174
},
187175
{
188-
"id": "44",
176+
"id": "41",
189177
"title": "Gökhan Kırdar: Dayan Kalbim"
190178
},
191179
{
192-
"id": "45",
180+
"id": "42",
193181
"title": "Hey! Douglas - Ayva Çiçek Açmış ft. Gaye Su Akyol"
194182
},
195183
{
196-
"id": "46",
184+
"id": "43",
197185
"title": "Hey! Douglas ft. Göksel - Duruyor Dünya"
198186
},
199187
{
200-
"id": "47",
201-
"title": "Müslüm Gürses & Duman - Olmadı Yar"
202-
},
203-
{
204-
"id": "48",
205-
"title": "Pinhâni - Dünyadan Uzak"
206-
},
207-
{
208-
"id": "49",
188+
"id": "44",
209189
"title": "mor ve ötesi - Bir Derdim Var"
210190
},
211191
{
212-
"id": "50",
192+
"id": "45",
213193
"title": "mor ve ötesi - Sultan-ı Yegâh"
214194
}
215195
],
216196
"turku": [
217197
{
218-
"id": "51",
219-
"title": "Al Fadimem ⧸ Cura"
220-
},
221-
{
222-
"id": "52",
223-
"title": "Asiye"
224-
},
225-
{
226-
"id": "53",
227-
"title": "Bir Fırtına"
228-
},
229-
{
230-
"id": "54",
231-
"title": "Bülbülüm Altın Kafeste"
232-
},
233-
{
234-
"id": "55",
235-
"title": "Drama Köprüsü"
236-
},
237-
{
238-
"id": "56",
239-
"title": "Elif Dedim"
240-
},
241-
{
242-
"id": "57",
198+
"id": "46",
243199
"title": "Eşkiya Dünyaya Hükümdar Olmaz"
244200
},
245201
{
246-
"id": "58",
202+
"id": "47",
247203
"title": "Harmandali"
248204
},
249205
{
250-
"id": "59",
251-
"title": "Hüdayda"
252-
},
253-
{
254-
"id": "60",
255-
"title": "Kerimoğlu"
256-
},
257-
{
258-
"id": "61",
259-
"title": "Mahzuni Şerif - bilmem aglasam mi"
260-
},
261-
{
262-
"id": "62",
263-
"title": "Neşet Ertaş - Ayaş Yolları"
264-
},
265-
{
266-
"id": "63",
206+
"id": "48",
267207
"title": "Sivas Ellerinde Sazim Calinir"
268208
},
269209
{
270-
"id": "64",
210+
"id": "49",
271211
"title": "Tekeler Köyü Zeybeği"
272212
}
273213
],
274214
"world": [
275215
{
276-
"id": "65",
216+
"id": "50",
277217
"title": "Four Winds - Adam Hurst"
278218
},
279219
{
280-
"id": "66",
220+
"id": "51",
281221
"title": "Françoise Hardy - Le Temps de l'Amour"
282222
},
283223
{
284-
"id": "67",
285-
"title": "Kazim Koyuncu - Didou Nana"
286-
},
287-
{
288-
"id": "68",
224+
"id": "52",
289225
"title": "Lily Was Here"
290226
},
291227
{
292-
"id": "69",
228+
"id": "53",
293229
"title": "Mark Eliyahu - Journey"
294230
},
295231
{
296-
"id": "70",
232+
"id": "54",
297233
"title": "Masâr"
298-
},
299-
{
300-
"id": "71",
301-
"title": "Nasimi"
302234
}
303235
]
304236
}

assets/exp/cv.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

assets/js/colors.js

Lines changed: 0 additions & 31 deletions
This file was deleted.

assets/js/idea.js

Lines changed: 0 additions & 43 deletions
This file was deleted.

assets/js/theme.js

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,13 @@
1-
const DATA_THEME = 'data-theme';
2-
31
function getSystemTheme() {
42
return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
53
}
64

75
function setTheme(theme){
6+
const DATA_THEME = 'data-theme';
87
document.documentElement.setAttribute(DATA_THEME, theme);
98
window.localStorage.setItem('theme', theme);
109
console.log("setTheme: ", theme)
1110
}
1211

13-
function toggleTheme() {
14-
let currentMode = document.documentElement.getAttribute(DATA_THEME);
15-
if (currentMode === 'dark') {
16-
setTheme('light')
17-
} else {
18-
setTheme('dark')
19-
}
20-
}
21-
22-
const themeToggle = document.getElementById("themeToggle");
23-
if (themeToggle) {
24-
themeToggle.textContent = "🌓";
25-
themeToggle.addEventListener('keydown', function(event) {
26-
if (event.key === 'Enter') {
27-
toggleTheme();
28-
}
29-
});
30-
}
31-
3212
const theme = getSystemTheme()
3313
setTheme(theme)
-5.45 MB
Binary file not shown.
-9.21 MB
Binary file not shown.
-7.78 MB
Binary file not shown.

0 commit comments

Comments
 (0)