16abe754af
Rust (cot framework) + PostgreSQL boilerplate providing: - Session-based auth with Admin/User roles - OIDC/SSO login with PKCE, group-to-role mapping, auto-provisioning - Admin panel: user management, settings, debug/config inspector - 3-tier config system (compiled default → DB → FURU_* env vars) - i18n (English + Russian) with compile-time translations macro - JSON API skeleton (GET /api/me) - DB-backed sessions (survive server restarts) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
399 B
HTML
15 lines
399 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ t.lang.code() }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}{{ t.site_name }}{% endblock title %}</title>
|
|
{% block head_extra %}{% endblock head_extra %}
|
|
</head>
|
|
<body>
|
|
{% block body %}
|
|
{% block content %}{% endblock content %}
|
|
{% endblock body %}
|
|
</body>
|
|
</html>
|