summaryrefslogtreecommitdiffstats
path: root/templates/overview.md
diff options
context:
space:
mode:
Diffstat (limited to 'templates/overview.md')
-rw-r--r--templates/overview.md12
1 files changed, 4 insertions, 8 deletions
diff --git a/templates/overview.md b/templates/overview.md
index cc6f990..c1f1d05 100644
--- a/templates/overview.md
+++ b/templates/overview.md
@@ -1,23 +1,19 @@
----
-title: {{ title }}
----
-
-# {{ title }}
+{% include '_head.md' %}
{% if branches %}
| Branch | Commit | Date |
|--------|--------|------|
{%- for branch in branches %}
-| {{ branch.name }} | {{ branch.commit.summary }} | {{ branch.commit.authored_datetime.strftime('%Y-%m-%d %H:%M:%S') }} |{% endfor %}
+| {{ branch.name }} | {{ branch.commit.summary }} | {{ branch.commit.committed_datetime.strftime('%Y-%m-%d %H:%M:%S') }} |{% endfor %}
{% else %}
No branches found.
{% endif %}
{% if tags %}
| Tag | Commit | Date |
-|--------|--------|------|
+|-----|--------|------|
{%- for tag in tags %}
-| {{ tag.name }} | {{ tag.commit.summary }} | {{ tag.commit.authored_datetime.strftime('%Y-%m-%d %H:%M:%S') }} |{% endfor %}
+| {{ tag.name }} | {{ tag.commit.summary }} | {{ tag.commit.committed_datetime.strftime('%Y-%m-%d %H:%M:%S') }} |{% endfor %}
{% else %}
No tags found.
{% endif %}