sundeep-news-scan/templates/base.html

24 lines
686 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Telugu Article Extractor{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<header>
<div class="wrap">
<a class="brand" href="{{ url_for('index') }}">Telugu Article Extractor</a>
<span class="tag">PDF → high-DPI pages → articles → text</span>
</div>
</header>
<main class="wrap">
{% block content %}{% endblock %}
</main>
<footer class="wrap">
Local-only. Files stay on this machine.
</footer>
</body>
</html>