aboutsummaryrefslogtreecommitdiff
path: root/docs/theme/extra/templates/navbar_links.html
blob: 06933c5de470df5a9823570aea2cfacf05afeb6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
@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 [ \
            ("CMake-module.html","CMake"), \
            ("Cuda-module.html","CUDA"), \
            ("Dlang-module.html","Dlang"), \
            ("External-Project-module.html","External Project"), \
            ("Fs-module.html","Filesystem"), \
            ("Gnome-module.html","GNOME"), \
            ("Hotdoc-module.html","Hotdoc"), \
            ("Icestorm-module.html","Icestorm"), \
            ("Keyval-module.html","Keyval"), \
            ("Pkgconfig-module.html","Pkgconfig"), \
            ("Python-3-module.html","Python 3"), \
            ("Python-module.html","Python"), \
            ("Qt4-module.html","Qt4"), \
            ("Qt5-module.html","Qt5"), \
            ("RPM-module.html","RPM"), \
            ("Rust-module.html","Rust"), \
            ("SourceSet-module.html","SourceSet"), \
            ("Windows-module.html","Windows"), \
            ("i18n-module.html","i18n")]:
        <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>