diff options
Diffstat (limited to 'templates/log.md')
| -rw-r--r-- | templates/log.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/log.md b/templates/log.md new file mode 100644 index 0000000..70f719f --- /dev/null +++ b/templates/log.md @@ -0,0 +1,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 %} |