summaryrefslogtreecommitdiffstats
path: root/gitsrht/templates/summary.html
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-10-01 17:26:18 -0400
committerDrew DeVault <sir@cmpwn.com>2018-10-01 17:26:18 -0400
commit0d3a9e2533658d84c77ce6f68f7968e11f1c09f0 (patch)
tree3be573d5e4c0c3e685db500ad239de0c153b04b6 /gitsrht/templates/summary.html
parent0c2a72230bdbaf7e0d8b527ebe49ae6505c9815d (diff)
Polish
Diffstat (limited to 'gitsrht/templates/summary.html')
-rw-r--r--gitsrht/templates/summary.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/gitsrht/templates/summary.html b/gitsrht/templates/summary.html
index 19a565d..aec08cc 100644
--- a/gitsrht/templates/summary.html
+++ b/gitsrht/templates/summary.html
@@ -1,5 +1,8 @@
{% extends "repo.html" %}
-{% import "utils.html" as utils %}
+{% import "utils.html" as utils with context %}
+{% block title %}
+<title>{{repo.owner.canonical_name}}/{{repo.name}} - {{cfg("sr.ht", "site-name")}} git</title>
+{% endblock %}
{% block content %}
{% if repo.description %}
<div class="header-extension">
@@ -14,7 +17,7 @@
<div class="event-list" style="margin-bottom: 0.5rem">
{% for c in commits %}
<div class="event">
- {{ utils.commit_event(repo, c, commit_time, trim_commit) }}
+ {{ utils.commit_event(repo, c) }}
</div>
{% endfor %}
</div>