Skip to content

Commit 0b8b515

Browse files
committed
Merge branch 'main' into development
2 parents 970b120 + 354a88b commit 0b8b515

File tree

7 files changed

+1396
-0
lines changed

7 files changed

+1396
-0
lines changed

Gemfile.lock

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
6+
base64 (0.2.0)
7+
bigdecimal (3.1.9)
8+
colorator (1.1.0)
9+
concurrent-ruby (1.3.4)
10+
em-websocket (0.5.3)
11+
eventmachine (>= 0.12.9)
12+
http_parser.rb (~> 0)
13+
eventmachine (1.2.7)
14+
ffi (1.17.1-arm64-darwin)
15+
forwardable-extended (2.6.0)
16+
google-protobuf (4.29.3-arm64-darwin)
17+
bigdecimal
18+
rake (>= 13)
19+
http_parser.rb (0.8.0)
20+
i18n (1.14.6)
21+
concurrent-ruby (~> 1.0)
22+
jekyll (4.3.4)
23+
addressable (~> 2.4)
24+
colorator (~> 1.0)
25+
em-websocket (~> 0.5)
26+
i18n (~> 1.0)
27+
jekyll-sass-converter (>= 2.0, < 4.0)
28+
jekyll-watch (~> 2.0)
29+
kramdown (~> 2.3, >= 2.3.1)
30+
kramdown-parser-gfm (~> 1.0)
31+
liquid (~> 4.0)
32+
mercenary (>= 0.3.6, < 0.5)
33+
pathutil (~> 0.9)
34+
rouge (>= 3.0, < 5.0)
35+
safe_yaml (~> 1.0)
36+
terminal-table (>= 1.8, < 4.0)
37+
webrick (~> 1.7)
38+
jekyll-polyglot (1.8.1)
39+
jekyll (>= 4.0, >= 3.0)
40+
jekyll-sass-converter (3.0.0)
41+
sass-embedded (~> 1.54)
42+
jekyll-seo-tag (2.8.0)
43+
jekyll (>= 3.8, < 5.0)
44+
jekyll-watch (2.2.1)
45+
listen (~> 3.0)
46+
just-the-docs (0.5.4)
47+
jekyll (>= 3.8.5)
48+
jekyll-seo-tag (>= 2.0)
49+
rake (>= 12.3.1)
50+
kramdown (2.5.1)
51+
rexml (>= 3.3.9)
52+
kramdown-parser-gfm (1.1.0)
53+
kramdown (~> 2.0)
54+
liquid (4.0.4)
55+
listen (3.9.0)
56+
rb-fsevent (~> 0.10, >= 0.10.3)
57+
rb-inotify (~> 0.9, >= 0.9.10)
58+
mercenary (0.4.0)
59+
pathutil (0.16.2)
60+
forwardable-extended (~> 2.6)
61+
public_suffix (6.0.1)
62+
rake (13.2.1)
63+
rb-fsevent (0.11.2)
64+
rb-inotify (0.11.1)
65+
ffi (~> 1.0)
66+
rexml (3.4.0)
67+
rouge (4.5.1)
68+
safe_yaml (1.0.5)
69+
sass-embedded (1.83.1)
70+
google-protobuf (~> 4.29)
71+
rake (>= 13)
72+
terminal-table (3.0.2)
73+
unicode-display_width (>= 1.1.1, < 3)
74+
unicode-display_width (2.6.0)
75+
webrick (1.9.1)
76+
77+
PLATFORMS
78+
arm64-darwin
79+
80+
DEPENDENCIES
81+
base64 (~> 0.2.0)
82+
jekyll (~> 4.3.2)
83+
jekyll-polyglot
84+
just-the-docs (= 0.5.4)
85+
webrick
86+
87+
BUNDLED WITH
88+
2.5.16

_includes/navigation.html

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
2+
<!-- Navigation Start -->
3+
<nav class="navbar navbar-custom navbar-fixed-top{% if page.bluenavbar == true %} bluenavbar{% endif %}" role="navigation">
4+
<div class="container">
5+
<div class="navbar-header">
6+
{% if page.section-type == "index" %}
7+
<a class="navbar-brand page-scroll" href="#page-top">
8+
{% else %}
9+
<a class="navbar-brand" href="{{site.baseurl}}/">
10+
{% endif %}
11+
<div class="navbar-logo">
12+
<h1>
13+
<a href="{{ '/' | relative_url }}" class="logo">
14+
<img src="{{ '/assets/favicons/favicon-light-nobg.png' | relative_url }}" width="200" height="105" alt="BIRDS Logo">
15+
</a>
16+
</h1>
17+
</a>
18+
</div>
19+
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
20+
<ul class="nav navbar-nav">
21+
<li class="firstlevel">
22+
<a href="{{site.baseurl}}/" class="firstlevelanchor">
23+
Home
24+
</a>
25+
</li>
26+
<li class="firstlevel dropdown dropdown-large{% if currentRequest[0] == 'docs' %} active {% endif %}">
27+
<a href="https://birdsopensource.github.io/docs/" class="firstlevelanchor">
28+
Docs
29+
</a>
30+
</li>
31+
<li class="firstlevel dropdown dropdown-large{% if currentRequest[0] == 'about' %} active {% endif %}">
32+
<a href="{{site.baseurl}}/about/" class="firstlevelanchor">
33+
About
34+
</a>
35+
</li>
36+
<li class="firstlevel dropdown dropdown-large{% if currentRequest[0] == 'showcase' %} active {% endif %}">
37+
<a href="{{site.baseurl}}/showcase/" class="firstlevelanchor">
38+
Showcase
39+
</a>
40+
</li>
41+
<li class="firstlevel dropdown dropdown-large{% if currentRequest[0] == 'webinars' %} active {% endif %}">
42+
<a href="{{site.baseurl}}/webinars/" class="firstlevelanchor">
43+
Webinars
44+
</a>
45+
</li>
46+
<li class="firstlevel dropdown dropdown-large{% if currentRequest[0] == 'github' %} active {% endif %}">
47+
<a href="https://github.com/BIRDSOpenSource/BIRDSOpenSource.github.io" class="firstlevelanchor">
48+
<button type="button" class="btn btn-primary"><strong>Github</strong></button>
49+
</a>
50+
</li>
51+
</ul>
52+
</div>
53+
</div>
54+
</nav>
55+
56+
<!-- Navigation End -->
57+

0 commit comments

Comments
 (0)