-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
82 lines (77 loc) · 2.87 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
<!DOCTYPE html>
<html lang="tr-TR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mehmet's RSS Feed</title>
<link rel="stylesheet" href="style.css" />
<link href="images/favicon.ico" rel="icon" type="image/x-icon" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.13.0/css/all.css"
/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="preload" href="images/rss.png" as="image" />
<script id="_wau0rl">var _wau = _wau || []; _wau.push(["small", "hz9nbj6kd5", "0rl"]);</script><script async src="//waust.at/s.js"></script>
</head>
<body>
<header>
<div class="logo">
<img src="images/rss.png" alt="Logo" />
</div>
<div class="title">
<h4>Mehmet's RSS Feed</h4>
</div>
<div class="feedback-section">
<a
href="https://github.com/mehmetkahya0"
target="_blank"
class="github-logo"
><i class="fab fa-github"></i
></a>
<button class="header-button" id="feedback-button">Feedback</button>
<button
id="theme-toggle-button"
class="toggle-header-button"
aria-label="Toggle Theme"
>
🌞
</button>
</div>
</header>
<div class="mobile-warning">
<p>❗️Haber fotoğrafları mobil cihazlarda gösterilmemektedir❗️</p>
</div>
<!-- Ana içerik bölümü -->
<main class="content">
<section id="update-notes" class="update-notes">
<p>
- If RSS feed's doesn't show please clear your browser caches
</p>
</section>
<!-- Diğer içerikler -->
</main>
<main id="feed" class="container">
<!-- RSS beslemesi burada görüntülenecek -->
</main>
<footer>
<p style="font-weight: bolder; font-size: larger">Mehmet Kahya - 2024 - <a href="https://github.com/mehmetkahya0/rss" style="color: white;"><i class="fab fa-github"></i> </a> </p>
<ul>
<li style="font-weight: lighter; font-size: small">
Webtekno - New York Times -Technopat - Github - Evrim Ağacı - OpenAI
Blog - The Verge - Apple Newsroom - Apple Devoloper News - Formula 1
</li>
</ul>
</footer>
<script src="script.js"></script>
<script>
const themeToggleButton = document.getElementById("theme-toggle-button");
const body = document.body;
themeToggleButton.addEventListener("click", () => {
body.classList.toggle("dark-mode");
});
</script>
</body>
</html>