- Added TMP_PATH env var - Added support for Events from attributes - Added Negundo client support
27 lines
807 B
PHTML
27 lines
807 B
PHTML
{% extends "lean/layout/error" %}
|
|
|
|
{% language.set "lean.error.500" %}
|
|
|
|
{% title _('page-title') %}
|
|
|
|
{% section "content-right" %}
|
|
<div>
|
|
<div class="title">{{ $title ?? title() }}</div>
|
|
<div class="subtitle">{{= isset($subtitle) ? nl2br($subtitle) : _("subtitle") }}</div>
|
|
<div class="content">{{= isset($message) ? nl2br($message) : _("message") }}</div>
|
|
<u><a href="#" onclick="history.back()">{% _ "back" %}</a></u>
|
|
</div>
|
|
{% endsection %}
|
|
|
|
{% section "content-left" %}
|
|
<div class="picto-login">
|
|
{% view "lean/picto/undraw_error" %}
|
|
</div>
|
|
{% endsection %}
|
|
|
|
{% section "head.css" %}
|
|
.title {font-size:2rem}
|
|
.subtitle {font-size:1.25rem; padding-top: 1rem;}
|
|
.content {background: #f7f7f7;padding: 7px;color: #8c3c3c;}
|
|
{% endsection %}
|