d4d8d8a3b6
- Migrated monolithic main.py to feature-scoped routers in app/routers/ - Added GEMINI.md for project context and AI instructional guidelines - Updated README.md with a comprehensive modernization plan (SQL migration, robust scraping DSL, frontend modernization) - Improved authentication with cookie support and modular JS - Updated test suite and documentation
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Ohm Stream Downloader</title>
|
|
|
|
<!-- CSS -->
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
|
|
<!-- JavaScript -->
|
|
<script src="/static/js/auth.js?v=1.10" defer></script>
|
|
<script src="/static/js/api.js?v=1.11" defer></script>
|
|
<script src="/static/js/utils.js?v=1.11" defer></script>
|
|
<script src="/static/js/downloads.js?v=1.11" defer></script>
|
|
<script src="/static/js/anime.js?v=1.11" defer></script>
|
|
<script src="/static/js/anime-details.js?v=1.12" defer></script>
|
|
<script src="/static/js/series-search.js?v=1.11" defer></script>
|
|
<script src="/static/js/recommendations.js?v=1.11" defer></script>
|
|
<script src="/static/js/tabs.js?v=1.11" defer></script>
|
|
<script src="/static/js/watchlist.js?v=1.11" defer></script>
|
|
<script src="/static/js/watchlist-ui.js?v=1.11" defer></script>
|
|
<script src="/static/js/main.js?v=1.11" defer></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|