mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
21 lines
417 B
Smarty
21 lines
417 B
Smarty
{{*
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*}}
|
|
<html>
|
|
<head>
|
|
<title>{{$title}}</title>
|
|
</head>
|
|
<body>
|
|
<h1>{{$title}}</h1>
|
|
<p>{{$message}}</p>
|
|
{{if $trace}}
|
|
<pre>{{$trace nofilter}}</pre>
|
|
{{/if}}
|
|
{{if $request_id}}
|
|
<pre>Request: {{$request_id}}</pre>
|
|
{{/if}}
|
|
</body>
|
|
</html>
|