diff options
Diffstat (limited to 'templates/index.jinja')
-rw-r--r-- | templates/index.jinja | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/templates/index.jinja b/templates/index.jinja index 0bb9604..5a2acb7 100644 --- a/templates/index.jinja +++ b/templates/index.jinja @@ -1,4 +1,4 @@ -{% extends "template.html" %} +{% extends "template.jinja" %} {% block content %} <aside> <section id="recent_thoughts"> @@ -29,8 +29,7 @@ <h3>recent git commits:</h3> <ul> {% for commit in commits %} - <li><a href="{{commit['url']}}">{{"[%s] %s {+%i;-%i}" % (commit["repo"], commit["message"], commit["stats"]["additions"], commit["stats"]["deletions"])}}</a></li> - <!-- <li>[<a href="{{https://git.eda.gay + commit['repo']}}">{{commit["repo"]}}</a>] {+{{commit["stats"]["additions"]}}; -{{commit["stats"]["deletions"])}}} <a href="{{commit['url'].replace('github.com', 'git.eda.gay') + '.html'}}">{{commit["message"]}}</a> - <a href="{{commit['url']}}">Backup link</a></li> --> + <li>[<a href="{{'https://git.eda.gay/' + commit['repo'] + '/about.html'}}">{{commit["repo"]}}</a>] {+{{commit["stats"]["additions"]}}; -{{commit["stats"]["deletions"]}}} <a href="{{commit['url'].replace('github.com/jwansek', 'git.eda.gay') + '.html'}}">{{commit["message"]}}</a> - <a href="{{commit['url']}}">backup link</a></li> {% endfor %} </ul> </section> |