mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-21 14:57:52 +00:00
16 lines
206 B
PHP
16 lines
206 B
PHP
<?php
|
|
/**
|
|
* This template is for rendering error messages (not exceptions)
|
|
*/
|
|
?>
|
|
|
|
<?php if (isset($title)): ?>
|
|
<h1>
|
|
<?= e($title) ?>
|
|
</h1>
|
|
<?php endif; ?>
|
|
|
|
<p>
|
|
<?= e($message) ?>
|
|
</p>
|