post_content); $first_block = $blocks[0] ?? null; $colors = [ 'yellow' => '#C3A659', 'blue' => '#59B2CB', 'green' => '#85C27D', 'purple' => '#8F6DBC', ]; if ($first_block) { $block_data = $first_block['attrs']['data'] ?? null; $context['theme_color_hex'] = $colors[$block_data['theme']] ?? '#ffffff'; $context['theme_color_name'] = $block_data['theme'] ?? 'white'; } $template = ['page.twig']; } else if (is_404()) { $context['post'] = Timber::get_post(678); $template = ['errors/404.twig']; status_header(404); nocache_headers(); header("HTTP/1.0 404 Not Found"); } Timber::render($template, $context); ?>