|
|
<!DOCTYPE html> |
|
|
<html lang="de"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>TouchTask - Mobile Todo App</title> |
|
|
<link rel="stylesheet" href="style.css"> |
|
|
<script src="https://cdn.tailwindcss.com"></script> |
|
|
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
|
|
<script src="https://unpkg.com/feather-icons"></script> |
|
|
<script src="components/navbar.js"></script> |
|
|
<script src="components/month-accordion.js"></script> |
|
|
</head> |
|
|
<body class="bg-gray-50 min-h-screen"> |
|
|
<custom-navbar></custom-navbar> |
|
|
|
|
|
<main class="container mx-auto px-4 py-6"> |
|
|
<div class="mb-8"> |
|
|
<h1 class="text-3xl font-bold text-gray-800 mb-2">Meine Aufgaben</h1> |
|
|
<p class="text-gray-600">Verwalte deine Aufgaben nach Monaten</p> |
|
|
</div> |
|
|
|
|
|
<div class="space-y-4"> |
|
|
<custom-month-accordion month="Januar"></custom-month-accordion> |
|
|
<custom-month-accordion month="Februar"></custom-month-accordion> |
|
|
<custom-month-accordion month="März"></custom-month-accordion> |
|
|
<custom-month-accordion month="April"></custom-month-accordion> |
|
|
</div> |
|
|
|
|
|
<div class="fixed bottom-6 right-6"> |
|
|
<button class="bg-blue-500 hover:bg-blue-600 text-white rounded-full p-4 shadow-lg transition-colors"> |
|
|
<i data-feather="plus"></i> |
|
|
</button> |
|
|
</div> |
|
|
</main> |
|
|
|
|
|
<script src="script.js"></script> |
|
|
<script> |
|
|
feather.replace(); |
|
|
document.addEventListener('DOMContentLoaded', function() { |
|
|
|
|
|
const accordions = document.querySelectorAll('custom-month-accordion'); |
|
|
accordions.forEach(acc => { |
|
|
acc.addEventListener('click', function() { |
|
|
this.toggle(); |
|
|
}); |
|
|
}); |
|
|
}); |
|
|
</script> |
|
|
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
|
|
</body> |
|
|
</html> |