No Content Found
No blog post found matching your search criteria. You can try different keywords.
View All PostsNo blog post found matching your search criteria. You can try different keywords.
View All PostsSearching...
`; // Make AJAX request fetch(`${window.BASE_URL}/${window.LANGUAGE_CODE || 'tr'}/blog/search?q=${encodeURIComponent(query)}`, { method: 'GET', headers: { 'X-Requested-With': 'XMLHttpRequest' } }) .then(response => response.text()) .then(html => { blogResults.innerHTML = html; }) .catch(error => { console.error('Search error:', error); blogResults.innerHTML = `An error occurred during search. Please try again.