From 22ef524b9602ea39b08e18f689ef1b135de8ca2f Mon Sep 17 00:00:00 2001 From: Rabbit Whispers Date: Fri, 25 Apr 2025 20:28:26 -0500 Subject: Initial commit --- templates/repo-list.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 templates/repo-list.html (limited to 'templates/repo-list.html') diff --git a/templates/repo-list.html b/templates/repo-list.html new file mode 100644 index 0000000..b05f479 --- /dev/null +++ b/templates/repo-list.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} + +{% block content %} + + + + + {% for repo in repos %} + +
Name + Description + Last Update +
{{repo.name}} + {{repo.description}} + {{repo.last_update}} + {% endfor %} +
+{% endblock %} + -- cgit