mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-24 22:11:01 -06:00
22 lines
474 B
Twig
22 lines
474 B
Twig
<!DOCTYPE html>
|
|
<html lang="{{ config('app.locale') }}">
|
|
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
{% block styles %}{% endblock %}
|
|
{{ asset_style("visiosoft.theme.base::css/offline.scss") }}
|
|
</head>
|
|
<body>
|
|
<div class="container" style="max-width: 800px;">
|
|
|
|
{% include "theme::partials/messages" %}
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
{% include "visiosoft.theme.base::partials/offline" %}
|
|
|
|
</body>
|
|
</html>
|