mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-01-17 14:18:35 +01:00
23f8c81646
* fix: php notice * refactor/feat: merge HtmlFormat.css into style.css Also improve ux of error rendering. * fix: center-align footer text
23 lines
538 B
PHP
23 lines
538 B
PHP
<!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" />
|
|
<title><?= e($_title ?? 'RSS-Bridge') ?></title>
|
|
<link href="static/style.css" rel="stylesheet">
|
|
<link rel="icon" type="image/png" href="static/favicon.png">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<div class="logo"></div>
|
|
</header>
|
|
|
|
<?= raw($page) ?>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|