Biblica et Patristica Thoruniensia

A Q2-ranked, peer-reviewed open-access journal in biblical exegesis and patristic studies

Trusted platform for publishing biblical and patristic research.

Biblistica et Patristica Thoruniensia

Explore our most read articles

Total Students
25k+
Safe & Secured
120+ Catalog
Quality Education
Explore Zoomy
Why Choose Zoomy?
There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form. There are many variations of passages of Lorem Ipsum available.

Subscribe our Newsletter & Get every updates.

Learn New Skills

There are many variations of passag of Lorm Ipsum available.

if (typeof jQuery === 'undefined') { console.error('jQuery is not loaded'); } else { console.log('jQuery is loaded, version: ' + jQuery.fn.jquery); } jQuery(document).ready(function($) { console.log('Skrypt filtrowania rozpoczęty'); // Wyświetl przyciski w konsoli console.log('Znalezione przyciski filtrowania:', $('.filter-button').length); // Prostsze podejście - użyj konkretnych klas z motywu $('.filter-button').on('click', function(e) { e.preventDefault(); console.log('Kliknięto przycisk:', $(this).text()); // Pobierz wartość filtra z atrybutu data-filter var filter = $(this).data('filter'); console.log('Filtrowanie według:', filter); // Usuń aktywną klasę ze wszystkich przycisków $('.filter-button').removeClass('active'); // Dodaj aktywną klasę do klikniętego przycisku $(this).addClass('active'); // Proste filtrowanie - użyjmy klas, które na pewno istnieją if (filter === 'all') { // Pokaż wszystkie posty $('.post-item, article, .elementor-post').show(); } else { // Ukryj wszystkie posty $('.post-item, article, .elementor-post').hide(); // Pokaż tylko posty z odpowiednim rokiem $('[data-year="' + filter + '"]').show(); } }); // Dodaj atrybuty data-year do postów $('.post-item, article, .elementor-post').each(function() { var postDate = $(this).find('.post-date, .elementor-post-date, time').text(); console.log('Znaleziona data posta:', postDate); // Wyszukaj rok w tekście daty var yearMatch = postDate.match(/b(2019|2020|2021|2022|2023|2024|2025)b/); if (yearMatch) { var year = yearMatch[0]; console.log('Znaleziony rok:', year); $(this).attr('data-year', year); } else { console.log('Nie znaleziono roku dla:', postDate); } }); console.log('Skrypt filtrowania zakończony'); });