35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
|
<?php
|
||
|
require_once 'includes/config.php';
|
||
|
require_once 'includes/stories.php';
|
||
|
|
||
|
$config = Config::load();
|
||
|
$stories = Stories::getAll();
|
||
|
?>
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="fr">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title><?= htmlspecialchars($config['site']['name']) ?></title>
|
||
|
<link rel="stylesheet" href="assets/css/style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<h1><?= htmlspecialchars($config['site']['name']) ?></h1>
|
||
|
<p><?= htmlspecialchars($config['site']['description']) ?></p>
|
||
|
</header>
|
||
|
|
||
|
<main>
|
||
|
<div class="stories-grid">
|
||
|
<?php foreach ($stories as $story): ?>
|
||
|
<article class="story-card">
|
||
|
<img src="<?= htmlspecialchars($story['cover']) ?>" alt="">
|
||
|
<h2><?= htmlspecialchars($story['title']) ?></h2>
|
||
|
<p><?= htmlspecialchars($story['description']) ?></p>
|
||
|
<a href="story.php?id=<?= htmlspecialchars($story['id']) ?>">Lire</a>
|
||
|
</article>
|
||
|
<?php endforeach; ?>
|
||
|
</div>
|
||
|
</main>
|
||
|
</body>
|
||
|
</html>
|