Pemikiran Imam Abu Daud dalam Kitab al-Sunnah

/* Menjaga ruang lingkup styling agar tidak merusak elemen luar Blogger */
#abu-daud-explorer {
font-family: ‘Plus Jakarta Sans’, sans-serif;
background-color: #fcfaf7;
color: #2d241e;
}
#abu-daud-explorer .arabic {
font-family: ‘Amiri’, serif;
direction: rtl;
}
#abu-daud-explorer .chart-container {
position: relative;
width: 100%;
max-width: 650px;
margin-left: auto;
margin-right: auto;
height: 350px;
max-height: 400px;
}
#abu-daud-explorer .section-transition {
transition: all 0.4s ease-in-out;
}
#abu-daud-explorer .glossary-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
#abu-daud-explorer .active-tab {
border-bottom: 3px solid #8b5e34 !important;
color: #8b5e34 !important;
font-weight: 700;
}
#abu-daud-explorer .custom-scrollbar::-webkit-scrollbar {
width: 6px;
}
#abu-daud-explorer .custom-scrollbar::-webkit-scrollbar-track {
background: #f1f1f1;
}
#abu-daud-explorer .custom-scrollbar::-webkit-scrollbar-thumb {
background: #d4b499;
border-radius: 10px;
}


Manifesto Athari di Abad ke-3 H

Imam Abu Daud (202–275 H) bukan sekadar penyusun hukum, melainkan arsitek ortodoksi. Melalui “Kitab al-Sunnah”, ia menegaskan bahwa validitas pengamalan syariat sepenuhnya bergantung pada kemurnian akidah. Bagian ini mengeksplorasi perjalanan ilmiah beliau dari Sijistan hingga Basrah dan bagaimana beliau menyaring lautan hadis menjadi sebuah benteng teologis yang kokoh.

73

Usia wafat di Basrah, meninggalkan warisan yang memulihkan stabilitas sosial-keagamaan pasca-pemberontakan Zanj.

Ath

Mewarisi tradisi Athari dari Imam Ahmad bin Hanbal, menolak spekulasi teologi dialektis (Kalam).

Ketajaman Seleksi Hadis

Perbandingan antara hadis yang dikumpulkan vs hadis yang dipilih dalam Sunan.

QOWIM.NET 2026

Athari Tradition
Filologi Hadis
Anti-Heresiologi

// Logika Navigasi Tab
function switchSection(sectionId) {
const sections = [‘bio’, ‘hadis’, ‘sekte’, ‘syarah’];
sections.forEach(id => {
const el = document.getElementById(`section-${id}`);
const tab = document.getElementById(`tab-${id}`);
if (el && tab) {
if (id === sectionId) {
el.classList.remove(‘hidden’);
tab.classList.add(‘active-tab’);
tab.classList.remove(‘text-stone-400’);
tab.classList.add(‘text-stone-800’);
} else {
el.classList.add(‘hidden’);
tab.classList.remove(‘active-tab’);
tab.classList.remove(‘text-stone-800’);
tab.classList.add(‘text-stone-400’);
}
}
});
}

// Logika Accordion
function toggleAccordion(id) {
const el = document.getElementById(id);
const icon = document.getElementById(`icon-${id}`);
if (!el || !icon) return;

if (el.classList.contains(‘hidden’)) {
el.classList.remove(‘hidden’);
icon.textContent = ‘-‘;
icon.classList.add(‘text-amber-600’);
} else {
el.classList.add(‘hidden’);
icon.textContent = ‘+’;
icon.classList.remove(‘text-amber-600’);
}
}

// Inisialisasi Chart secara aman di Halaman Blogger
function initAbuDaudChart() {
const canvas = document.getElementById(‘hadisChart’);
if (!canvas) return;

const ctx = canvas.getContext(‘2d’);
new Chart(ctx, {
type: ‘bar’,
data: {
labels: [‘Koleksi Awal’, ‘Seleksi Sunan’],
datasets: [{
label: ‘Jumlah Hadis’,
data: [500000, 5274],
backgroundColor: [‘#d4b499’, ‘#8b5e34’],
borderRadius: 8,
barThickness: 50
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: { display: false },
tooltip: {
callbacks: {
label: function(context) {
return context.raw.toLocaleString() + ‘ Hadis’;
}
}
}
},
scales: {
y: {
beginAtZero: true,
grid: { display: false },
ticks: {
callback: value => value / 1000 + ‘k’
}
},
x: {
grid: { display: false }
}
}
}
});
}

// Memastikan skrip berjalan baik pada sistem pemuatan statis Blogger
if (document.readyState === “complete” || document.readyState === “interactive”) {
setTimeout(initAbuDaudChart, 1);
} else {
document.addEventListener(“DOMContentLoaded”, initAbuDaudChart);
}