We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a0d031 commit 5bad329Copy full SHA for 5bad329
2 files changed
templates/docusaurus/frame.html.jinja2
@@ -1,11 +1,9 @@
1
---
2
-{% if module.name == 'fishjam' %}
3
-title: fishjam
4
-{% else %}
5
-title: fishjam.{{ module.name }}
6
-{% endif %}
+title: {{ module.name }}
7
sidebar_label: {{ module.name }}
8
custom_edit_url: null
9
10
11
-{% block content %}{% endblock %}
+{% block content %}{% endblock %}
+
templates/docusaurus/module.html.jinja2
@@ -1,7 +1,11 @@
{% extends "frame.html.jinja2" %}
{% block content %}
-# {{ module.name }}
+{% if module.name == 'fishjam' %}
+# fishjam
+{% else %}
+# fishjam.{{ module.name }}
+{% endif %}
{% block module_info %}
{% if module.docstring and ".. include::" not in module.docstring %}
0 commit comments