summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2020-02-06 12:53:59 -0500
committerMichael Hirsch, Ph.D <10931741+scivision@users.noreply.github.com>2020-02-06 12:54:38 -0500
commita183ce2cff07f6eed891b2e2b5e73841f52ea3d3 (patch)
tree6bb0d009e2f28e49dcf3f21bdbabed8c2ac4bb2f
parentdaf7ca2f3c4eec76559a41f98dcf206623b47ae1 (diff)
downloadmeson-a183ce2cff07f6eed891b2e2b5e73841f52ea3d3.tar.gz
topbar HTML module list
-rw-r--r--docs/theme/extra/templates/navbar_links.html48
1 files changed, 27 insertions, 21 deletions
diff --git a/docs/theme/extra/templates/navbar_links.html b/docs/theme/extra/templates/navbar_links.html
index ad8014ea6..6980f8143 100644
--- a/docs/theme/extra/templates/navbar_links.html
+++ b/docs/theme/extra/templates/navbar_links.html
@@ -1,22 +1,28 @@
@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 (("Fs-module.html","Filesystem"), \
- ("Gnome-module.html","GNOME"), \
- ("i18n-module.html","i18n"), \
- ("Pkgconfig-module.html","Pkgconfig"), \
- ("Python-module.html","Python"), \
- ("Python-3-module.html","Python 3"), \
- ("Qt4-module.html","Qt4"), \
- ("Qt5-module.html","Qt5"), \
- ("RPM-module.html","RPM"), \
- ("SourceSet-module.html","SourceSet"), \
- ("Windows-module.html","Windows"), \
- ("Hotdoc-module.html","Hotdoc")):
+ <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 ( \
+ ("CMake-module.html","CMake"), \
+ ("Cuda-module.html","CUDA"), \
+ ("Dlang-module.html","Dlang"), \
+ ("Fs-module.html","Filesystem"), \
+ ("Gnome-module.html","GNOME"), \
+ ("Hotdoc-module.html","Hotdoc"), \
+ ("i18n-module.html","i18n"), \
+ ("Icestorm-module.html","Icestorm"), \
+ ("Kconfig-module.html","kconfig"), \
+ ("Pkgconfig-module.html","Pkgconfig"), \
+ ("Python-module.html","Python"), \
+ ("Python-3-module.html","Python 3"), \
+ ("Qt4-module.html","Qt4"), \
+ ("Qt5-module.html","Qt5"), \
+ ("RPM-module.html","RPM"), \
+ ("SourceSet-module.html","SourceSet"), \
+ ("Windows-module.html","Windows")):
<li>
<a href="@tup[0]">@tup[1]</a>
</li>
@@ -30,11 +36,11 @@
</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")):
+ ("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>