Initial commit

This commit is contained in:
2026-05-12 23:33:46 +02:00
commit ccf32dcece
104 changed files with 17439 additions and 0 deletions

8
page.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
$context = Timber::context();
$post = Timber::get_post();
$context['post'] = $post;
$context['page_edit_link'] = current_user_can( 'edit_page', $post->ID ) ? get_edit_post_link( $post->ID ) : '';
Timber::render( 'page.twig', $context );