diff options
author | Melody Horn <melody@boringcactus.com> | 2021-04-22 04:51:12 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-04-22 04:51:12 -0600 |
commit | 7c0daee1843e36c4c204c653a2ce010e4e0f98b2 (patch) | |
tree | 8acd77ed7b159508f4242eb6a34c6a3f7c360b4f /templates/index.html | |
parent | 9e17467a434482a54e480aac9edb9473bd3cf323 (diff) | |
download | gityeet-7c0daee1843e36c4c204c653a2ce010e4e0f98b2.tar.gz gityeet-7c0daee1843e36c4c204c653a2ce010e4e0f98b2.zip |
expect that trailing slash
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/index.html b/templates/index.html index 302c11e..ecddb48 100644 --- a/templates/index.html +++ b/templates/index.html @@ -11,8 +11,8 @@ <h1>hi this is gityeet</h1> <ul> {% for repo in state.data %} - <li><a href="/{{ state.relative_path(repo.path()).display() }}">{{ state.relative_path(repo.path()).display() }}</a></li> + <li><a href="/{{ state.relative_path(repo.path()).display() }}/">{{ state.relative_path(repo.path()).display() }}</a></li> {% endfor %} </ul> </body> -</html>
\ No newline at end of file +</html> |