56 lines
2.2 KiB
PHP
56 lines
2.2 KiB
PHP
<?php
|
|
require_once BASE_PATH . '/src/Parsedown.php';
|
|
$Parsedown = new Parsedown();
|
|
|
|
$coverGradients = [
|
|
'linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%)',
|
|
'linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%)',
|
|
'linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%)',
|
|
'linear-gradient(135deg, #fef3c7 0%, #fde68a 100%)',
|
|
'linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%)',
|
|
'linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%)',
|
|
];
|
|
|
|
ob_start();
|
|
?>
|
|
|
|
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-3 g-4">
|
|
<?php foreach ($posts as $i => $post): ?>
|
|
<?php
|
|
$html = $Parsedown->text($post['content']);
|
|
$preview = mb_strimwidth(strip_tags($html), 0, 120, '…');
|
|
$gradient = $coverGradients[$i % count($coverGradients)];
|
|
$postUrl = '/post/' . rawurlencode($post['slug']);
|
|
?>
|
|
<div class="col">
|
|
<article class="card h-100">
|
|
<?php if (!$post['published']): ?>
|
|
<div class="draft-ribbon">Brouillon</div>
|
|
<?php endif; ?>
|
|
<div class="card-cover" style="background: <?= $gradient ?>"></div>
|
|
<div class="card-body d-flex flex-column">
|
|
<h2 class="card-title">
|
|
<a href="<?= htmlspecialchars($postUrl) ?>">
|
|
<?= htmlspecialchars($post['title']) ?>
|
|
</a>
|
|
</h2>
|
|
<p class="card-text flex-grow-1"><?= htmlspecialchars($preview) ?></p>
|
|
<div class="post-entry-meta mt-auto">
|
|
<span><?= htmlspecialchars(date('d/m/Y', strtotime((string)($post['created_at'] ?? '')))) ?></span>
|
|
<?php if (function_exists('isAdmin') && isAdmin()): ?>
|
|
<a href="/?action=edit&uuid=<?= htmlspecialchars($post['uuid']) ?>" class="post-entry-edit">modifier</a>
|
|
<?php endif; ?>
|
|
<a href="<?= htmlspecialchars($postUrl) ?>" class="post-entry-read">→ lire</a>
|
|
</div>
|
|
</div>
|
|
<a href="<?= htmlspecialchars($postUrl) ?>" class="stretched-link"></a>
|
|
</article>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
|
|
<?php
|
|
$content = ob_get_clean();
|
|
$title = 'varlog';
|
|
include __DIR__ . '/layout.php';
|