Add application source code and docker-compose files

This commit is contained in:
Your Name
2026-05-17 09:49:14 +00:00
parent 1ea2ba9f15
commit c9be303d4c
+1
View File
@@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>旅行地のノート</title><script src="https://cdn.tailwindcss.com"></script></head><body class="bg-yellow-50 p-8"><h1 class="text-2xl font-bold mb-4">旅行地のノート</h1><form action="/notes/" method="post" class="mb-8"><input name="content" class="border p-2 w-full" placeholder="何か書いてね..." required><button type="submit" class="mt-2 bg-blue-500 text-white p-2">貼る</button></form><div class="grid grid-cols-1 md:grid-cols-3 lg:grid-cols-4 gap-4">{% for note in notes %}<div class="bg-white p-4 shadow transform rotate-[-2deg] hover:rotate-0 transition">{{ note.content }}</div>{% endfor %}</div></body></html>