debut d'integration de la version terminal

This commit is contained in:
sarahgarcin1 2026-03-24 00:46:25 +01:00
parent 00edad1729
commit 54ce5faf08
146 changed files with 2532 additions and 40285 deletions

View file

@ -8,7 +8,7 @@ $src = $block->image()->toFile()->url();
?>
<?php if ($src): ?>
<figure class="web-image">
<figure class="print-image full-page <?= $block->taille()->esc() ?>">
<img src="<?= $src ?>" alt="<?= $alt->esc() ?>">
@ -18,29 +18,3 @@ $src = $block->image()->toFile()->url();
</figcaption>
<?php endif ?>
</figure>
<figure class="print-image full-page <?= $block->taille()->esc() ?>" style="height:<?= $block->image()->toFile()->height()?>px">
<?php if($srcred = $block->imagered()->toFile()):?>
<div class="print-red red-layer">
<img src="<?= $srcred->url() ?>" alt="<?= $alt->esc() ?>">
</div>
<?php endif ?>
<?php if($srcgreen = $block->imagegreen()->toFile()):?>
<div class="print-green green-layer">
<img src="<?= $srcgreen->url() ?>" alt="<?= $alt->esc() ?>">
</div>
<?php endif ?>
<?php if($srcblue = $block->imageblue()->toFile()):?>
<div class="print-blue blue-layer">
<img src="<?= $srcblue->url() ?>" alt="<?= $alt->esc() ?>">
</div>
<?php endif ?>
<?php if ($caption->isNotEmpty()): ?>
<figcaption>
<?= $caption->kt() ?>
</figcaption>
<?php endif ?>
</figure>
<?php endif ?>