From 02284958a1189ffcb10b34a4c3a02417f8136a4d Mon Sep 17 00:00:00 2001 From: Anson Bridges Date: Mon, 11 Aug 2025 22:24:05 -0700 Subject: Initialize git repo from local project files --- templates/home.html | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 templates/home.html (limited to 'templates/home.html') diff --git a/templates/home.html b/templates/home.html new file mode 100644 index 0000000..d54d2b7 --- /dev/null +++ b/templates/home.html @@ -0,0 +1,31 @@ + + + + Photocosm - Home + + + +
+ Home + {% if current_user.is_authenticated %} + Logout, {{current_user.name}} + {% else %} + Log In + Sign Up + {% endif %} +
+ {% with messages = get_flashed_messages() %} + {% if messages %} +
+ {{ messages[0] }} +
+ {% endif %} + {% endwith %} +
+

Collections

+ {% for collection in collections %} + {{ collection['id'] }}
+ {% endfor %} +
+ + \ No newline at end of file -- cgit v1.2.3