summaryrefslogtreecommitdiffstats
path: root/templates/log.md
blob: 70f719f37eb0a6d3eaacbef3bddcd2aa4ac2f24b (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 }} | {% if commit.refs %}{{ commit.refs | join(', ') }}{% endif %} | {{ commit.committed_datetime.strftime('%Y-%m-%d %H:%M:%S') }} |{% endfor %}
{% else %}
No commits found.
{% endif %}