-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav-links.html
48 lines (38 loc) · 1.86 KB
/
nav-links.html
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
{% assign contact_link = "mailto:" | append: site.contact_email %}
{% if site.algolia_search %}
<div class="search-widget">
<input type="search" id="siteSearchInput" placeholder="Type to search…">
</div>
{% endif %}
{% if site.is_hub %}
{% include nav-page-link.html htmlclass="projects" url="/projects/" title="Software + Projects" %}
{% include nav-page-link.html htmlclass="about" url="/about/" title="About" active_for_nested=true %}
{% if site.num_posts_combined > 0 %}
{% include nav-page-link.html htmlclass="blog" url="/blog/" title="Blog" active_for_nested=true %}
{% if site.num_all_software > 0 %}
{% include nav-page-link.html htmlclass="software" url="/software/" title="Software" active_for_nested=true %}
{% endif %}
{% if site.num_all_specs > 0 %}
{% include nav-page-link.html htmlclass="specs" url="/specs/" title="Specifications" active_for_nested=true %}
{% endif %}
{% endif %}
{% include nav-page-link.html htmlclass="about" url="/workshops/launch" title="Workshops" active_for_nested=true %}
{% else %}
{% if site.one_software %}
{% include nav-page-link.html htmlclass="docs" url=site.one_software.url title="Docs" active_for_nested=true %}
{% else %}
{% if site.num_all_software > 0 %}
{% include nav-page-link.html htmlclass="software" url="/software/" title="Software" active_for_nested=true %}
{% endif %}
{% endif %}
{% if site.num_all_specs > 0 %}
{% include nav-page-link.html htmlclass="specs" url="/specs/" title="Specifications" active_for_nested=true %}
{% endif %}
{% include project-nav.html %}
{% if site.num_posts_combined > 0 %}
{% include nav-page-link.html htmlclass="blog" url="/blog/" title="Blog" active_for_nested=true %}
{% endif %}
{% endif %}
{% if site.algolia_search %}
<a href="javascript: void 0;" class="search"><i class="fas fa-search"></i></a>
{% endif %}