blob: cc6f9901a187c99a422f4450617f3c0ea61ca237 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
title: {{ title }}
---
# {{ title }}
{% 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 %}
{% 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 %}
{% else %}
No tags found.
{% endif %}
|