Add inspirations blueprints, template and views

This commit is contained in:
Timothée Goguely 2024-09-04 11:41:37 +02:00
parent d1c108a2d6
commit 1183905251
7 changed files with 107 additions and 1 deletions

View file

@ -0,0 +1,10 @@
<?php
$specificData = [
"exampleField" => $page->exampleField(),
"exampleHardData" => 'Example hard value'
];
$data = array_merge($genericData, $specificData);
echo json_encode($data);

View file

@ -0,0 +1 @@
<?php snippet('generic-template') ?>