blob: 1949cf23bd46714e7022a70f5c7f049b8b6cd8b8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{% include '_head.md' %}
{% if commits %}
| Message | Branches/Tags | Date |
|---------|---------------|------|
{%- for commit in commits %}
| [{{ commit.summary }}](/{{ content_subdir}}/{{ commit.hexsha }}/) | {% if commit.refs %}{{ commit.refs | join(', ') }}{% endif %} | {{ commit.committed_datetime.strftime('%Y-%m-%d %H:%M:%S') }} |{% endfor %}
{% else %}
No commits found.
{% endif %}
|