diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2020-02-06 12:53:59 -0500 |
---|---|---|
committer | Michael Hirsch, Ph.D <10931741+scivision@users.noreply.github.com> | 2020-02-06 12:54:38 -0500 |
commit | a183ce2cff07f6eed891b2e2b5e73841f52ea3d3 (patch) | |
tree | 6bb0d009e2f28e49dcf3f21bdbabed8c2ac4bb2f /docs/theme | |
parent | daf7ca2f3c4eec76559a41f98dcf206623b47ae1 (diff) | |
download | meson-a183ce2cff07f6eed891b2e2b5e73841f52ea3d3.zip meson-a183ce2cff07f6eed891b2e2b5e73841f52ea3d3.tar.gz meson-a183ce2cff07f6eed891b2e2b5e73841f52ea3d3.tar.bz2 |
topbar HTML module list
Diffstat (limited to 'docs/theme')
-rw-r--r-- | docs/theme/extra/templates/navbar_links.html | 48 |
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 ad8014e..6980f81 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> |