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