Apps
Courses
Templates
Subscribe
Tony David
I am an programmer / notion creator. I build smart notion templates for all purposes. I have sold over 1000 templates.
Website
Twitter
Templates
Tony David
Reading Tracker and Books Organizer
FREE
Tony David
Smart Reading List
$19
Tony David
Household Tasks and Chores Tracker
$9
Tony David
Subscription Tracker Notion Template
FREE
Tony David
Notion Professional Resume
FREE
Courses
No items found.
script> document.addEventListener("DOMContentLoaded", function () { const modalShown = sessionStorage.getItem('modalShown'); document.querySelectorAll('.template-card').forEach(item => { item.addEventListener('click', function (e) { e.preventDefault(); const url = this.getAttribute('data-url'); const modal = document.getElementById('templateModal'); if (!modal) { console.error("Modal not found"); return; } if (!modalShown) { sessionStorage.setItem('modalShown', 'true'); modal.classList.add('active'); setTimeout(() => { modal.classList.remove('active'); window.open(url, '_blank'); }, 3000); } else { window.open(url, '_blank'); } }); }); });