This commit is contained in:
isUnknown 2026-04-15 20:17:12 +02:00
parent d4be54dfe2
commit 1dd4060314
14 changed files with 151 additions and 148 deletions

View file

@ -1,22 +1,5 @@
<?php snippet('header') ?>
<body class="about">
<h1><?= $site->title() ?></h1>
<h1><?= $site->title() ?></h1>
<?php snippet('menu') ?>
<p>
<?= $page->presentation() ?>
</p>
</body>
<?php snippet('footer') ?>

View file

@ -1,23 +1,8 @@
<?php snippet('header') ?>
<h1><?= $site->title() ?></h1>
<body class="home">
<?php foreach ($site->slideshow()->toFiles() as $image): ?>
<img src="<?= $image->url() ?>">
<?php endforeach; ?>
<h1><?= $site->title() ?></h1>
<?php snippet('menu') ?>
<?php foreach ($page->images() as $image): ?>
<img src="<?= $image->url() ?>">
<?php endforeach; ?>
</body>
<?php snippet('footer') ?>

View file

@ -1,12 +1,5 @@
<?php snippet('header') ?>
<body class="project">
<h1><?= $site->title() ?></h1>
<h1><?= $site->title() ?></h1>
<?php snippet('menu') ?>
</body>
<?php snippet('footer') ?>

View file

@ -1,28 +1,22 @@
<?php snippet('header') ?>
<body class="projects">
<ul class="projects-index">
<?php foreach ($page->children()->listed()->sortBy('date', 'desc') as $project): ?>
<li>
<details>
<summary>
<span> <?= $project->title() ?> </span>
<span> <?= $project->tags() ?> </span>
<span> <?= $project->date() ?> </span>
</summary>
<p><?= $project->description() ?></p>
<h1><?= $site->title() ?></h1>
</details>
</li>
<?php endforeach; ?>
</ul>
<?php snippet('menu') ?>
<ul class="projects-index">
<?php foreach ($page->children()->listed()->sortBy('date', 'desc') as $project): ?>
<li>
<details>
<summary>
<span> <?= $project->title() ?> </span>
<span> <?= $project->tags() ?> </span>
<span> <?= $project->date() ?> </span>
</summary>
<p><?= $project->description() ?></p>
</details>
</li>
<?php endforeach; ?>
</ul>
</body>
<?php snippet('footer') ?>