Files
hiep200311 adc1934e9c Refactor static serving: use Blueprint static_folder, inline header
- Disable Flask default /static/ folder (static_folder=None in app.py)
- Add headerRoute blueprint to serve views/header/ at /assets/header/
- Configure transcription and scraper blueprints with static_folder
  pointing to their respective views/ subfolders
- Inline header HTML directly in headerLoader.js (remove fetch call)
- Update all HTML templates to use new /assets/... URLs
2026-06-24 16:22:31 +07:00

30 lines
1.1 KiB
HTML

<!-- views/transcriptionPages/transcriptionReview.html -->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Transcript - {{ filename }}</title>
<link rel="stylesheet" href="https://db.onlinewebfonts.com/c/5ac3fe7c6abd2f62067f266d89671492?family=HelveticaNowDisplay-Medium" />
<link rel="stylesheet" href="https://db.onlinewebfonts.com/c/1aa3377e489837a26d019bba501e779d?family=HelveticaNowDisplayW01-Rg" />
<link rel="stylesheet" href="/assets/transcription/transcriptionReview.css" />
</head>
<body>
<div class="container">
<h1>Kết quả phiên âm</h1>
<div class="meta">
<strong>File:</strong> {{ filename }}<br />
<strong>Job ID:</strong> {{ job_id }}
</div>
<div style="margin-bottom: 20px">
<a href="/" class="btn">← Về</a>
<a href="/transcript/{{ job_id }}" class="btn">Tải TXT</a>
</div>
<div class="transcript">{{ content }}</div>
</div>
<script src="/assets/transcription/transcriptionReview.js"></script>
</body>
</html>