summaryrefslogtreecommitdiffstats
path: root/templates/overview.md
blob: e9a7599fdea69067c20e6b9c1ea81a647b25f58e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
date: {{ latest_commit_date }}
{% include '_head.md' %}

{% include '_nav.md' %}

{% if branches %}
| Branch | Commit | Date |
|--------|--------|------|
{%- for branch in branches %}
| [{{ branch.name }}](/{{ content_subdir }}/{{ branch.commit.hexsha }}/t) | [{{ branch.commit.summary }}](/{{ content_subdir }}/{{ branch.commit.hexsha }}) | {{ 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 }}](/{{ content_subdir }}/{{ tag.commit.hexsha }}/t)| [{{ tag.commit.summary }}](/{{ content_subdir }}/{{ tag.commit.hexsha }}) | {{ tag.commit.committed_datetime.strftime('%Y-%m-%d %H:%M:%S') }} |{% endfor %}
{% else %}
No tags found.
{% endif %}