diff options
author | Melody Horn <melody@boringcactus.com> | 2021-04-22 03:26:33 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-04-22 03:26:33 -0600 |
commit | 8c1666c1a64201f8a12e125e3c63a83f4dbf7069 (patch) | |
tree | aee0eb35952a1e7da7d3b03a4b91c4f1e5aa2634 /templates/index.html | |
parent | 0b1563bc56cf20f8a63d5b90783294a1eb11ea17 (diff) | |
download | gityeet-8c1666c1a64201f8a12e125e3c63a83f4dbf7069.tar.gz gityeet-8c1666c1a64201f8a12e125e3c63a83f4dbf7069.zip |
throw together a super basic repo list
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html index 5740f8b..00ccd55 100644 --- a/templates/index.html +++ b/templates/index.html @@ -9,5 +9,10 @@ </head> <body> <h1>hi this is gityeet</h1> +<ul> + {% for repo in state.data %} + <li>{{ repo.path().display() }}</li> + {% endfor %} +</ul> </body> </html>
\ No newline at end of file |