-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (46 loc) · 2.04 KB
/
index.html
File metadata and controls
53 lines (46 loc) · 2.04 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
<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>הצעות לפוסטים יומיים — ספריות תל אביב</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>הצעות לפוסטים יומיים</h1>
<p class="subtitle">ספריות תל אביב — <a href="https://www.facebook.com/tlv.libraries/" target="_blank" rel="noopener">עמוד הפייסבוק</a></p>
<div id="date-display" class="date-display"></div>
</header>
<nav class="date-nav">
<button id="prev-day" aria-label="יום קודם">‹ הקודם</button>
<input type="date" id="date-picker">
<button id="next-day" aria-label="יום הבא">הבא ›</button>
<button id="today-btn">היום</button>
</nav>
<main>
<div id="loading" class="loading">
<div class="spinner"></div>
<p>טוען תוכן...</p>
</div>
<div id="error" class="error hidden">
<p>😕 אין תוכן זמין להיום.</p>
<p class="error-detail">ייתכן שהתוכן טרם נוצר עבור תאריך זה. נסו שוב מאוחר יותר.</p>
</div>
<div id="content" class="hidden">
<section id="events-section" class="section">
<h2>📚 אירועים ספרותיים היום</h2>
<div id="events-list" class="events-list"></div>
</section>
<section id="suggestions-section" class="section">
<h2>💡 הצעות לפוסטים</h2>
<div id="suggestions-list" class="suggestions-list"></div>
</section>
</div>
</main>
<footer>
<p>התוכן נוצר באמצעות בינה מלאכותית ומיועד כהשראה בלבד. מומלץ לאמת את הפרטים ההיסטוריים.</p>
</footer>
<script src="script.js"></script>
</body>
</html>