aboutsummaryrefslogtreecommitdiff
path: root/docs/theme/extra/templates/navbar_links.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/theme/extra/templates/navbar_links.html')
-rw-r--r--docs/theme/extra/templates/navbar_links.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/docs/theme/extra/templates/navbar_links.html b/docs/theme/extra/templates/navbar_links.html
new file mode 100644
index 0000000..8a3f515
--- /dev/null
+++ b/docs/theme/extra/templates/navbar_links.html
@@ -0,0 +1,39 @@
+@require(page)
+
+<li class="dropdown">
+ <a class="dropdown-toggle" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+ Modules <span class="caret"></span>
+ </a>
+ <ul class="dropdown-menu" id="modules-menu">
+ @for tup in (("Gnome-module.html","GNOME"), \
+ ("i18n-module.html","i18n"), \
+ ("Pkgconfig-module.html","Pkgconfig"), \
+ ("Python-3-module.html","Python 3"), \
+ ("Qt4-module.html","Qt4"), \
+ ("Qt5-module.tml","Qt5"), \
+ ("RPM-module.html","RPM"), \
+ ("Windows-module.html","Windows")):
+ <li>
+ <a href="@tup[0]">@tup[1]</a>
+ </li>
+ @end
+ </ul>
+</li>
+\
+<li class="dropdown">
+ <a class="dropdown-toggle" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+ Quick References <span class="caret"></span>
+ </a>
+ <ul class="dropdown-menu" id="quick-refs-menu">
+ @for tup in (("Reference-manual.html", "Functions"), \
+ ("Build-options.html", "Options"), \
+ ("Configuration.html", "Configuration"), \
+ ("Dependencies.html", "Dependencies"), \
+ ("Unit-tests.html", "Tests"), \
+ ("Syntax.html", "Syntax")):
+ <li>
+ <a href="@tup[0]">@tup[1]</a>
+ </li>
+ @end
+ </ul>
+</li>