Hello!
The Snippets are not loading anymore locally and on server. What’s wrong?
Even when a put a H1 or echo in it.
home.php
<?php snippet('head') ?>
<?php snippet('nav') ?>
<?php snippet('footer') ?>
config.php
<?php
return [
'debug' => true,
'panel' => [
'slug' => 'klar'
],
'cache' => [
'pages' => [
'active' => false,
]
]
];
The snippets are called:
site/snippets/nav.php
site/snippets/head.php
site/snippets/footer.php
The page is published. But when I navigate to home it’s just an empty page.
Can someone help me with this?