هذا المتصفح لا يدعم عرض ملفات PDF. > ⬇️ تحميل ملف PDF 🔙 العودة لصفحة الرياضيات س1 امتحانات الثلاثي الثاني في الرياضيات سنة اولى ابتدائي body { font-family: 'Cairo', sans-serif; background: #f0f4f8; padding: 30px; } h2 { text-align: center; color: #2a8d6c; margin-bottom: 30px; } .post-list { max-width: 700px; margin: auto; display: flex; flex-direction: column; gap: 15px; } .post-card { background: #ffffff; padding: 15px 20px; border-radius: 12px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); transition: transform 0.2s ease, box-shadow 0.2s ease; } .post-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); background: #f8fff8; } .post-icon { width: 28px; height: 28px; margin-left: 15px; flex-shrink: 0; } .post-link { text-decoration: none; color: #333; font-weight: bold; font-size: 17px; } .post-link:hover { color: #2a8d6c; } .active-post { background: #dff7e6 !important; border: 2px solid #2a8d6c; } .active-post .post-link { color: #2a8d6c; } .reading-label { font-size: 14px; color: #2a8d6c; background-color: #e8fcef; padding: 4px 8px; border-radius: 6px; margin-right: 10px; } @media (max-width: 600px) { .post-card { flex-direction: column; align-items: flex-start; gap: 5px; } .post-icon { width: 24px; height: 24px; margin-left: 10px; } } 📚 امتحانات الثلاثي الثاني في الرياضيات سنة اولى ابتدائي جاري تحميل الملفات... const tagSlug = 'امتحانات-الثلاثي-الثاني-في-الرياضيات-سنة-اولى-ابتدائي'; const siteURL = 'https://najahni.tn'; const currentURL = window.location.href; async function fetchPostsByTag() { try { const tagRes = await fetch(`${siteURL}/wp-json/wp/v2/tags?slug=${encodeURIComponent(tagSlug)}`); const tags = await tagRes.json(); if (!tags.length) { document.getElementById("postList").innerHTML = "لم يتم العثور على هذا الوسم."; return; } const tagId = tags[0].id; const postRes = await fetch(`${siteURL}/wp-json/wp/v2/posts?tags=${tagId}&per_page=10`); const posts = await postRes.json(); let listHTML = ""; posts.forEach(post => { const isActive = currentURL.includes(post.slug); const activeClass = isActive ? 'active-post' : ''; const readingLabel = isActive ? `✅ قيد القراءة` : ''; listHTML += ` ${post.title.rendered} ${readingLabel} `; }); document.getElementById("postList").innerHTML = listHTML; } catch (error) { document.getElementById("postList").innerHTML = "حدث خطأ أثناء تحميل المقالات."; } } fetchPostsByTag();