trending.php 319 B

1234567891011121314
  1. <?php
  2. require_once( __DIR__ . '/inc/common.php' );
  3. $templates = new League\Plates\Engine( 'themes/' . $config['theme'] );
  4. $trending = new \Vioscope\Trending();
  5. echo $templates->render( 'trending', array(
  6. 'entries' => $trending->fetch_data(),
  7. 'config' => $config,
  8. 'info' => array(
  9. 'title' => 'Trending',
  10. ),
  11. ) );