Files
Huntarr.io/frontend/templates/base.html
Admin9705 e1190a3191 update
2026-01-27 12:21:27 -05:00

15 lines
471 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My App</title>
<link rel="stylesheet" href="./static/css/style.css">
</head>
<body>
<!-- Pass base URL configuration to JavaScript -->
<script>window.HUNTARR_BASE_URL = '{{ base_url|default("", true) }}';</script>
<!-- Pass global scripts -->
{% include 'components/scripts.html' %}
</body>
</html>