diff options
| author | Christoph Schlosser <christoph@linux.com> | 2025-08-25 00:12:59 +0200 |
|---|---|---|
| committer | Christoph Schlosser <christoph@linux.com> | 2025-08-30 18:41:33 +0200 |
| commit | bdd4756094e961f8951e4a1ddb6cd875c5b0026c (patch) | |
| tree | ef93acf2f0939bede31ffab482536f962a8ad4a1 /g2h/cli.py | |
| parent | 7d1797a6428447ff4dfd473111f6b40dc505ac43 (diff) | |
| download | git2hugo-bdd4756094e961f8951e4a1ddb6cd875c5b0026c.tar.gz | |
g2h: Add tree page
Diffstat (limited to 'g2h/cli.py')
| -rw-r--r-- | g2h/cli.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -31,6 +31,9 @@ def main(): factory.new_log(commits, branches, tags).render() for commit in commits: factory.new_commit(commit).render() + tree = factory.new_tree(commit, '', git.get_repo()) + for tree_page in tree.build_pages(factory): + tree_page.render() if __name__ == '__main__': main() |