21 lines
No EOL
554 B
PHP
21 lines
No EOL
554 B
PHP
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>Demo</title>
|
|
</head>
|
|
<body>
|
|
<ul>
|
|
<?php foreach($filteredItems as $book): ?>
|
|
<li>
|
|
<a href="<?= $book['purchaseUrl']; ?>">
|
|
<?= $book['name']; ?> (<?= $book['releaseYear'] ?>)
|
|
</a>
|
|
</li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</body>
|
|
</html>
|