list_notes.tmpl 846 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html lang="ro">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Notițe</title>
  6. <script src="https://cdn.tailwindcss.com"></script>
  7. </head>
  8. <body class="bg-[#0f0f0f] text-white p-10 font-sans">
  9. <h1 class="text-3xl mb-8 text-[#9974d0] font-bold">Notițele existente</h1>
  10. {{template "folder" .}}
  11. </body>
  12. </html>
  13. {{define "folder"}}
  14. <div class="ml-4 mb-6">
  15. <h2 class="text-xl font-bold text-[#c7a6ff] mb-2">
  16. {{.Nume}}
  17. </h2>
  18. {{if .Fisiere}}
  19. <div class="space-y-2 mb-4">
  20. {{range .Fisiere}}
  21. <div class="bg-[#202020] border border-[#3e3e3e] rounded-lg p-3">
  22. <a href="/notes/?note={{.Path}}" class="text-gray-200 hover:text-[#9974d0] hover:underline">
  23. {{.Nume}}
  24. </a>
  25. </div>
  26. {{end}}
  27. </div>
  28. {{end}}
  29. {{range .Subfoldere}}
  30. {{template "folder" .}}
  31. {{end}}
  32. </div>
  33. {{end}}