Completed
Push — master ( df59ed...1e23ba )
by Dominik
14s queued 11s
created
Labels
Severity
1
<?php
2
3
use Timber\Timber;
4
use Timber\PostQuery;
5
use Flynt\Utils\Options;
6
use const Flynt\Archives\POST_TYPES;
0 ignored issues
show
The constant Flynt\Archives\POST_TYPES was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
7
8
$context = Timber::get_context();
9
$context['posts'] = new PostQuery();
10
11
if (isset($_GET['contentOnly'])) {
12
    $context['contentOnly'] = true;
13
}
14
15
Timber::render('templates/index.twig', $context);
16