decor-6-site/site/templates/print.php

47 lines
1.5 KiB
PHP
Raw Permalink Normal View History

2026-03-18 08:44:44 +01:00
<?php snippet('head') ?>
<?php $sizes = "(min-width: 1200px) 25vw,
(min-width: 900px) 33vw,
(min-width: 600px) 50vw,
100vw";
?>
<header id="interface-header" w3-include-html="assets/pagedjs/interface.html"></header>
<div id="render-book"></div>
<template id="book-content">
2026-03-08 11:09:35 +01:00
2026-03-18 08:44:44 +01:00
<section class="cover">
<h1><?= $site->title()->html()?></h1>
</section>
2026-03-08 11:09:35 +01:00
2026-03-18 08:44:44 +01:00
<section class="toc">
<h2>Sommaire</h2>
<article id="table-of-contents"></article>
</section>
2026-01-05 19:33:15 +01:00
2026-03-18 08:44:44 +01:00
<?php foreach($site->index()->filterBy('intendedTemplate', 'chapitre')->listed() as $chapitre):?>
<section class="chapter <?= $chapitre->typeof()->esc()?>" id="<?= $chapitre->uid()?>">
<?php if($cover = $chapitre->cover()->toFile()):?>
<div class="interpage full-bleed-image full-page">
<figure>
<img src="<?= $cover->url() ?>" alt="">
</figure>
</div>
<?php endif;?>
<div class="chapter-title">
<p class="type"><?= $chapitre->typeof()?></p>
<h2><?= $chapitre->title()->html()->smartypants() ?></h2>
<h3><?= $chapitre->author()->html()->smartypants() ?></h3>
2026-03-08 11:09:35 +01:00
</div>
2026-03-18 08:44:44 +01:00
<div class="chapter-content">
<?php foreach ($chapitre->text()->toBlocks() as $block): ?>
<div id="<?= $block->id() ?>" class="block block-type-<?= $block->type() ?>">
<?= $block ?>
</div>
<?php endforeach ?>
2026-01-05 19:33:15 +01:00
</div>
2026-03-08 11:09:35 +01:00
2026-03-18 08:44:44 +01:00
</section>
<?php endforeach;?>
2026-01-05 19:33:15 +01:00
2026-03-18 08:44:44 +01:00
</template>
<?php snippet('footer');?>