Files
InfantrySkillCalculator/templates/index.html

62 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
{{ template "header" . }}
</head>
<body data-bs-theme="dark">
<div class="container-xxl bg-dark mt-5 p-4 rounded-3 text-light">
<div class="row">
<!-- Home-Clan Column -->
<div class="col-md-6 d-flex flex-column border-end px-3 pb-4">
<h4 class="text-center mt-2 pb-3 mb-3 border-bottom">Heim-Team</h4>
<!-- Clan Selection -->
{{ template "home_clan_bar" . }}
<!-- Player List -->
{{ template "home_player_list" . }}
<!-- List Controls -->
{{ template "home_player_bar" . }}
</div>
<!-- Opponent-Clan Column -->
<div class="col-md-6 d-flex flex-column px-3 pb-4">
<h4 class="text-center mt-2 pb-3 mb-3 border-bottom">Gegner-Team</h4>
<!-- Clan Selection -->
{{ template "opp_clan_bar" . }}
<!-- Player List -->
{{ template "opp_player_list" . }}
<!-- List Controls -->
{{ template "opp_player_bar" . }}
</div>
</div>
<!-- Bottom Controls -->
{{ template "bottom_controls" . }}
</div>
<!-- Delete Clan Modal -->
{{ template "delete_clan" . }}
<!-- Add Clan Modal -->
{{ template "add_clan" . }}
<!-- Edit Clan Modal -->
{{ template "edit_clan" . }}
<!-- Add Player Modal -->
{{ template "add_player" . }}
<script lang="javascript">
document.addEventListener('DOMContentLoaded', function() {
});
</script>
<!-- Bootstrap 5 JS Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>