2022-07-08 15:17:25 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<meta name="description" content="RSS-Bridge" />
|
2024-08-22 01:33:35 +03:00
|
|
|
<title>RSS-Bridge</title>
|
2023-03-24 15:44:34 +03:00
|
|
|
<link href="static/style.css?2023-03-24" rel="stylesheet">
|
2022-07-08 15:17:25 +03:00
|
|
|
<link rel="icon" type="image/png" href="static/favicon.png">
|
2024-01-25 20:20:02 +03:00
|
|
|
|
|
|
|
<script src="static/rss-bridge.js"></script>
|
2022-07-08 15:17:25 +03:00
|
|
|
</head>
|
2022-10-29 11:46:37 +03:00
|
|
|
|
2022-07-08 15:17:25 +03:00
|
|
|
<body>
|
2022-10-29 11:46:37 +03:00
|
|
|
<div class="container">
|
|
|
|
<header>
|
2022-11-15 02:32:04 +03:00
|
|
|
<a href="./">
|
|
|
|
<img width="400" src="static/logo_600px.png">
|
|
|
|
</a>
|
2022-10-29 11:46:37 +03:00
|
|
|
</header>
|
2022-07-08 15:17:25 +03:00
|
|
|
|
2023-06-02 21:22:09 +03:00
|
|
|
<?php foreach ($messages as $message): ?>
|
|
|
|
<div class="alert-<?= raw($message['level'] ?? 'info') ?>">
|
|
|
|
<?= raw($message['body']) ?>
|
2022-11-15 02:32:04 +03:00
|
|
|
</div>
|
2023-06-02 21:22:09 +03:00
|
|
|
<?php endforeach; ?>
|
2022-11-15 02:32:04 +03:00
|
|
|
|
2022-10-29 11:46:37 +03:00
|
|
|
<?= raw($page) ?>
|
|
|
|
</div>
|
|
|
|
</body>
|
2022-07-08 15:17:25 +03:00
|
|
|
</html>
|
2022-07-08 21:39:13 +03:00
|
|
|
|