diff --git a/muppet/output.py b/muppet/output.py index 20ffd430d9d0805a57f3306721300add4c5b9757..e4069abf2a2f669bc6666da6e4f4acd7fb2c81a5 100644 --- a/muppet/output.py +++ b/muppet/output.py @@ -256,6 +256,7 @@ def setup_module_index(*, with open(os.path.join(base, 'index.html'), 'w') as f: f.write(template.render(module_name=module.name, + module_author=module.metadata['author'], breadcrumbs=crumbs, content=content, path_base=path_base, diff --git a/templates/module_index.html b/templates/module_index.html index f638e8ca1786751cf0b2224b05d081d564f5a956..e8a74dbc48ce99f2b2e45fec4b9271d5a76778c0 100644 --- a/templates/module_index.html +++ b/templates/module_index.html @@ -8,7 +8,7 @@ Parameters: #} {% extends "base.html" %} {% block content %} -<h1>{{ module_name }}</h1> +<h1>{{ module_author }} / {{ module_name.title() }}</h1> <ul> {% for name, path in doc_files %}