mirror of
https://github.com/itflow-org/itflow
synced 2026-08-24 16:35:15 +00:00
11 lines
270 B
PHP
11 lines
270 B
PHP
<script src="/js/http.js"></script>
|
|
<script src="/js/autocomplete.js"></script>
|
|
<script src="/js/app.js"></script>
|
|
|
|
<?php
|
|
$content = ob_get_clean();
|
|
|
|
// Return the title and content as a JSON response
|
|
echo json_encode(['content' => $content]);
|
|
exit();
|
|
?>
|