mirror of
https://github.com/plexguide/Huntarr.git
synced 2026-01-25 20:58:48 -06:00
47 lines
1.4 KiB
HTML
47 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include 'components/head.html' %}
|
|
<title>Huntarr - Home</title>
|
|
</head>
|
|
<body>
|
|
<div class="app-container mobile-optimized">
|
|
{% include 'components/sidebar.html' %}
|
|
|
|
<div class="main-content">
|
|
{% include 'components/topbar.html' %}
|
|
|
|
<!-- Home Section -->
|
|
{% include 'components/home_section.html' %}
|
|
|
|
<!-- Logs Section -->
|
|
{% include 'components/logs_section.html' %}
|
|
|
|
<!-- History Section -->
|
|
{% include 'components/history_section.html' %}
|
|
|
|
<!-- Apps Section -->
|
|
{% include 'components/apps_section.html' %}
|
|
|
|
<!-- Settings Section -->
|
|
{% include 'components/settings_section.html' %}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% include 'components/footer.html' %}
|
|
|
|
{% include 'components/scripts.html' %}
|
|
<!-- Load settings-related scripts -->
|
|
<script src="/static/js/settings_forms.js"></script>
|
|
<!-- Load history script -->
|
|
<script src="/static/js/history.js"></script>
|
|
<!-- Load apps script -->
|
|
<script src="/static/js/apps.js"></script>
|
|
<!-- Emergency reset button implementation -->
|
|
<script src="/static/js/direct-reset.js"></script>
|
|
<!-- Stats reset handler -->
|
|
<script src="/static/js/stats-reset.js"></script>
|
|
|
|
</body>
|
|
</html> |