diff options
| author | Christoph Schlosser <christoph@linux.com> | 2025-08-24 17:37:43 +0200 |
|---|---|---|
| committer | Christoph Schlosser <christoph@linux.com> | 2025-08-24 17:42:39 +0200 |
| commit | 0b3f38b3786c1b738165778d210453e1c2bfe309 (patch) | |
| tree | f42d9533f1e5eee76b6fe147414dec53bf4eff1f /g2h/cli.py | |
| parent | 8f2f0d5d1176794bb7df2c42c54b7211e155d331 (diff) | |
| download | git2hugo-0b3f38b3786c1b738165778d210453e1c2bfe309.tar.gz | |
g2h: Add commit page
Diffstat (limited to 'g2h/cli.py')
| -rw-r--r-- | g2h/cli.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -28,6 +28,8 @@ def main(): factory = PageFactory(args.out_dir, project_name) factory.new_overview(branches, tags).render() factory.new_log(commits, branches, tags).render() + for commit in commits: + factory.new_commit(commit).render() if __name__ == '__main__': main() |