Files
backend/templates/base_plain.html.twig
2026-05-27 19:36:32 +03:00

20 lines
765 B
Twig

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="icon" type="image/jpg" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, sans-serif; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #f5f5f5; }
.central-content { text-align: center; padding: 2rem; }
.central-content .pic { max-width: 100%; height: auto; }
.central-content .big-text { margin-top: 1.5rem; font-size: 1.25rem; color: #333; }
</style>
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>