summaryrefslogtreecommitdiffstats
path: root/templates/log.md
diff options
context:
space:
mode:
Diffstat (limited to 'templates/log.md')
-rw-r--r--templates/log.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/log.md b/templates/log.md
new file mode 100644
index 0000000..1949cf2
--- /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 }}](/{{ 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 %}