Files
cnt-sindikatua/archive-videos.php

12 lines
234 B
PHP
Raw Normal View History

2025-10-15 15:33:50 +00:00
<?php
/**
* Archive Videos
*/
$context = Timber::context();
2025-10-21 13:29:47 +00:00
$context['videos'] = Timber::get_posts();
2025-10-15 15:33:50 +00:00
error_log('✅ archive-videos - Posts: ' . count($context['videos']));
Timber::render('templates/page-videos.twig', $context);