summaryrefslogtreecommitdiffstats
path: root/templates/html/htmljsmenumembersdata.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/html/htmljsmenumembersdata.tpl')
-rw-r--r--templates/html/htmljsmenumembersdata.tpl58
1 files changed, 58 insertions, 0 deletions
diff --git a/templates/html/htmljsmenumembersdata.tpl b/templates/html/htmljsmenumembersdata.tpl
new file mode 100644
index 0000000..fa2ab66
--- /dev/null
+++ b/templates/html/htmljsmenumembersdata.tpl
@@ -0,0 +1,58 @@
+{# all members #}
+{% with list=page.all section='' text=tr.all %}
+ {% include 'htmljsmenuletterdata.tpl' %}
+{% endwith %}
+{# functions #}
+{% if page.functions %}
+ {% with list=page.functions section='_func' text=tr.functions %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# variables #}
+{% if page.variables %}
+ {% with list=page.variables section='_vars' text=tr.variables %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# typedefs #}
+{% if page.typedefs %}
+ {% with list=page.typedefs section='_type' text=tr.typedefs %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# enums #}
+{% if page.enums %}
+ {% with list=page.enums section='_enum' text=tr.enums %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# enumValues #}
+{% if page.enumValues %}
+ {% with list=page.enumValues section='_eval' text=tr.enumValues %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# macros #}
+{% if page.macros %}
+ {% with list=page.macros section='_defs' text=tr.macros %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# properties #}
+{% if page.properties %}
+ {% with list=page.properties section='_prop' text=tr.properties %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# events #}
+{% if page.events %}
+ {% with list=page.events section='_evnt' text=tr.events %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# related #}
+{% if page.related %}
+ {% with list=page.related section='_rela' text=tr.related %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}