summaryrefslogtreecommitdiffstats
path: root/templates/log.md
blob: afe68748eaf483b41f2866b86cea42cd1465a699 (plain)
1
2
3
4
5
6
7
8
9
10
11
---
{% 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 %}