world-game/site/templates/white-paper.json.php
isUnknown 952375e6f5
All checks were successful
Deploy Production / Deploy to Production (push) Successful in 23s
white paper > intro : keep html formating. closes #76
2026-05-14 08:34:56 +02:00

13 lines
372 B
PHP

<?php
$specificData = [
'published' => $page->published()->toDate('d/m/Y'),
'intro' => $page->intro()->value(),
'cover' => $page->cover()->toFile()?->url(),
'fileUrl' => $page->downloadFile()->toFile()?->url(),
];
$pageData = array_merge($genericData, $specificData);
header('Content-Type: application/json');
echo json_encode($pageData);