"""Web UI layer for blog application. This package provides HTML endpoints and templates for the blog web interface, separate from the JSON API layer. Uses Jinja2 templates with Gitea-inspired theme support and comprehensive data-testid attributes for testing. The web layer follows the same DDD principles as the API layer and will be integrated with use cases in future iterations. """ from app.presentation.web.routes import router __all__ = ["router"]