2025-12-08 18:01:01 +01:00
|
|
|
<?php
|
|
|
|
|
/**
|
2026-01-09 10:34:10 +01:00
|
|
|
* Template for Vue.js print editor
|
|
|
|
|
* Route: /projet/narrative/print
|
2025-12-08 18:01:01 +01:00
|
|
|
*
|
2026-01-09 10:34:10 +01:00
|
|
|
* This template loads the Vue app and passes the parent narrative JSON URL
|
2025-12-08 18:01:01 +01:00
|
|
|
*/
|
|
|
|
|
|
2026-01-09 10:34:10 +01:00
|
|
|
// Get parent narrative
|
|
|
|
|
$narrative = $page->parent();
|
2025-12-08 18:01:01 +01:00
|
|
|
|
2026-01-09 10:34:10 +01:00
|
|
|
// Build narrative JSON URL
|
|
|
|
|
$narrativeJsonUrl = $narrative->url() . '.json';
|
2025-12-08 18:01:01 +01:00
|
|
|
?>
|
2026-01-09 10:34:10 +01:00
|
|
|
<?php snippet('header', ['narrativeJsonUrl' => $narrativeJsonUrl]) ?>
|
2025-12-08 18:01:01 +01:00
|
|
|
|
|
|
|
|
<?php snippet('footer') ?>
|