summaryrefslogtreecommitdiffstats
path: root/g2h/commit_page.py
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2025-08-24 17:37:43 +0200
committerChristoph Schlosser <christoph@linux.com>2025-08-24 17:42:39 +0200
commit0b3f38b3786c1b738165778d210453e1c2bfe309 (patch)
treef42d9533f1e5eee76b6fe147414dec53bf4eff1f /g2h/commit_page.py
parent8f2f0d5d1176794bb7df2c42c54b7211e155d331 (diff)
downloadgit2hugo-0b3f38b3786c1b738165778d210453e1c2bfe309.tar.gz
g2h: Add commit page
Diffstat (limited to 'g2h/commit_page.py')
-rw-r--r--g2h/commit_page.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/g2h/commit_page.py b/g2h/commit_page.py
new file mode 100644
index 0000000..325df85
--- /dev/null
+++ b/g2h/commit_page.py
@@ -0,0 +1,14 @@
+import os
+
+from .page import Page
+
+class CommitPage(Page):
+ def __init__(self, out_dir, name, commit):
+ super(CommitPage, self).__init__('commit.md', out_dir, os.path.join(commit.hexsha, 'index.md'), name)
+ self.commit = commit
+
+ def context(self):
+ return {
+ 'commit': self.commit,
+ 'title': self.name + ': ' + self.commit.hexsha
+ }