runique 2.0.0

A Django-inspired web framework for Rust with ORM, templates, and comprehensive security middleware
Documentation
<!DOCTYPE html>
<html lang="{{ lang }}">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>{{ error_title }}</title>
        <link rel="stylesheet" href="{{ "css/error/500.css" | runique_static }}">
    </head>
    <body>
        <div class="container">
            <div class="error-container">
                <div id="error-icon" class="error-icon">🔍</div>
                <p>404 Not Found</p>
                <h1 id="number-error" class="error-title">{{ error_title }}</h1>
                <p class="error-message">{{ error_text }}</p>
                <a href="/" class="btn-retry">{{ back_home }}</a>
            </div>
        </div>
    </body>
</html>