linaro-jekyll-theme 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (139) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +50 -0
  4. data/_includes/_theme-includes/_blog/pagination.html +39 -0
  5. data/_includes/_theme-includes/_footer/backup.html +71 -0
  6. data/_includes/_theme-includes/_footer/footer.html +54 -0
  7. data/_includes/_theme-includes/_head/ascii-art.html +11 -0
  8. data/_includes/_theme-includes/_head/head.html +24 -0
  9. data/_includes/_theme-includes/_navigation/_sub-navigation/tabbed-nav.html +150 -0
  10. data/_includes/_theme-includes/_navigation/nav.html +55 -0
  11. data/_includes/_theme-includes/_page-structure/breadcrumb.html +51 -0
  12. data/_includes/_theme-includes/_page-structure/old-breadcrumb.html +139 -0
  13. data/_includes/_theme-includes/_script-includes/css.html +1 -0
  14. data/_includes/_theme-includes/_script-includes/gtm/gtm-noscript.html +4 -0
  15. data/_includes/_theme-includes/_script-includes/gtm/gtm-script.html +7 -0
  16. data/_includes/_theme-includes/_script-includes/javascript.html +2 -0
  17. data/_includes/_theme-includes/_third-party/disqus.html +14 -0
  18. data/_includes/_theme-includes/_third-party/mailchimp-homepage.html +38 -0
  19. data/_includes/_theme-includes/_third-party/mailchimp-sub-footer.html +40 -0
  20. data/_includes/_theme-includes/members.html +63 -0
  21. data/_includes/base.html +14 -0
  22. data/_includes/image.html +1 -0
  23. data/_includes/media.html +3 -0
  24. data/_includes/owl-carousel-homepage.html +103 -0
  25. data/_layouts/empty-container-page.html +13 -0
  26. data/_layouts/plain-page.html +11 -0
  27. data/_sass/_bootstrap-compass.scss +9 -0
  28. data/_sass/_bootstrap-mincer.scss +19 -0
  29. data/_sass/_bootstrap-sprockets.scss +9 -0
  30. data/_sass/_bootstrap.scss +56 -0
  31. data/_sass/animations.scss +125 -0
  32. data/_sass/blog.scss +188 -0
  33. data/_sass/bootstrap/_alerts.scss +73 -0
  34. data/_sass/bootstrap/_badges.scss +68 -0
  35. data/_sass/bootstrap/_breadcrumbs.scss +28 -0
  36. data/_sass/bootstrap/_button-groups.scss +244 -0
  37. data/_sass/bootstrap/_buttons.scss +168 -0
  38. data/_sass/bootstrap/_carousel.scss +270 -0
  39. data/_sass/bootstrap/_close.scss +36 -0
  40. data/_sass/bootstrap/_code.scss +69 -0
  41. data/_sass/bootstrap/_component-animations.scss +37 -0
  42. data/_sass/bootstrap/_dropdowns.scss +216 -0
  43. data/_sass/bootstrap/_forms.scss +617 -0
  44. data/_sass/bootstrap/_glyphicons.scss +307 -0
  45. data/_sass/bootstrap/_grid.scss +84 -0
  46. data/_sass/bootstrap/_input-groups.scss +171 -0
  47. data/_sass/bootstrap/_jumbotron.scss +54 -0
  48. data/_sass/bootstrap/_labels.scss +66 -0
  49. data/_sass/bootstrap/_list-group.scss +130 -0
  50. data/_sass/bootstrap/_media.scss +66 -0
  51. data/_sass/bootstrap/_mixins.scss +40 -0
  52. data/_sass/bootstrap/_modals.scss +150 -0
  53. data/_sass/bootstrap/_navbar.scss +662 -0
  54. data/_sass/bootstrap/_navs.scss +242 -0
  55. data/_sass/bootstrap/_normalize.scss +424 -0
  56. data/_sass/bootstrap/_pager.scss +54 -0
  57. data/_sass/bootstrap/_pagination.scss +89 -0
  58. data/_sass/bootstrap/_panels.scss +271 -0
  59. data/_sass/bootstrap/_popovers.scss +131 -0
  60. data/_sass/bootstrap/_print.scss +101 -0
  61. data/_sass/bootstrap/_progress-bars.scss +87 -0
  62. data/_sass/bootstrap/_responsive-embed.scss +35 -0
  63. data/_sass/bootstrap/_responsive-utilities.scss +179 -0
  64. data/_sass/bootstrap/_scaffolding.scss +161 -0
  65. data/_sass/bootstrap/_tables.scss +234 -0
  66. data/_sass/bootstrap/_theme.scss +291 -0
  67. data/_sass/bootstrap/_thumbnails.scss +38 -0
  68. data/_sass/bootstrap/_tooltip.scss +101 -0
  69. data/_sass/bootstrap/_type.scss +298 -0
  70. data/_sass/bootstrap/_utilities.scss +55 -0
  71. data/_sass/bootstrap/_variables.scss +874 -0
  72. data/_sass/bootstrap/_wells.scss +29 -0
  73. data/_sass/bootstrap/mixins/_alerts.scss +14 -0
  74. data/_sass/bootstrap/mixins/_background-variant.scss +12 -0
  75. data/_sass/bootstrap/mixins/_border-radius.scss +18 -0
  76. data/_sass/bootstrap/mixins/_buttons.scss +65 -0
  77. data/_sass/bootstrap/mixins/_center-block.scss +7 -0
  78. data/_sass/bootstrap/mixins/_clearfix.scss +22 -0
  79. data/_sass/bootstrap/mixins/_forms.scss +88 -0
  80. data/_sass/bootstrap/mixins/_gradients.scss +58 -0
  81. data/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
  82. data/_sass/bootstrap/mixins/_grid.scss +122 -0
  83. data/_sass/bootstrap/mixins/_hide-text.scss +21 -0
  84. data/_sass/bootstrap/mixins/_image.scss +33 -0
  85. data/_sass/bootstrap/mixins/_labels.scss +12 -0
  86. data/_sass/bootstrap/mixins/_list-group.scss +32 -0
  87. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  88. data/_sass/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  89. data/_sass/bootstrap/mixins/_opacity.scss +8 -0
  90. data/_sass/bootstrap/mixins/_pagination.scss +24 -0
  91. data/_sass/bootstrap/mixins/_panels.scss +24 -0
  92. data/_sass/bootstrap/mixins/_progress-bar.scss +10 -0
  93. data/_sass/bootstrap/mixins/_reset-filter.scss +8 -0
  94. data/_sass/bootstrap/mixins/_reset-text.scss +18 -0
  95. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  96. data/_sass/bootstrap/mixins/_responsive-visibility.scss +21 -0
  97. data/_sass/bootstrap/mixins/_size.scss +10 -0
  98. data/_sass/bootstrap/mixins/_tab-focus.scss +9 -0
  99. data/_sass/bootstrap/mixins/_table-row.scss +28 -0
  100. data/_sass/bootstrap/mixins/_text-emphasis.scss +12 -0
  101. data/_sass/bootstrap/mixins/_text-overflow.scss +8 -0
  102. data/_sass/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  103. data/_sass/breadcrumb.scss +48 -0
  104. data/_sass/carousel.scss +122 -0
  105. data/_sass/cookieconsent.scss +13 -0
  106. data/_sass/critical.scss +991 -0
  107. data/_sass/fa.scss +2331 -0
  108. data/_sass/flipclock.scss +435 -0
  109. data/_sass/font-awesome.min.scss +4 -0
  110. data/_sass/fonts.scss +7 -0
  111. data/_sass/footer.scss +76 -0
  112. data/_sass/lightbox.scss +213 -0
  113. data/_sass/members-sprite.scss +425 -0
  114. data/_sass/nav.scss +533 -0
  115. data/_sass/openhours.scss +51 -0
  116. data/_sass/owl.carousel.min.scss +6 -0
  117. data/_sass/owl.theme.default.min.scss +6 -0
  118. data/_sass/products.scss +214 -0
  119. data/_sass/projects.scss +34 -0
  120. data/_sass/social-media-icons.scss +71 -0
  121. data/_sass/syntax.scss +65 -0
  122. data/_sass/tables.scss +87 -0
  123. data/_sass/theme.scss +208 -0
  124. data/assets/js/app/main.js +116 -0
  125. data/assets/js/app/mixitup.js +23 -0
  126. data/assets/js/app/search-page.js +41 -0
  127. data/assets/js/app/sticky-navbar.js +65 -0
  128. data/assets/js/vendor/bootstrap.min.js +7 -0
  129. data/assets/js/vendor/cookieconsent.min.js +15 -0
  130. data/assets/js/vendor/flipclock.min.js +2 -0
  131. data/assets/js/vendor/jquery.min.js +4 -0
  132. data/assets/js/vendor/lazysizes.min.js +2 -0
  133. data/assets/js/vendor/lightbox.js +519 -0
  134. data/assets/js/vendor/mc-validate.js +14 -0
  135. data/assets/js/vendor/owl.carousel.min.js +27 -0
  136. data/assets/js/vendor/picturefill.min.js +5 -0
  137. data/assets/js/vendor/shuffle.js +2004 -0
  138. data/assets/vendor.js +0 -0
  139. metadata +377 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b4da3284d29791a789fd7f88798b16366c980a1b
4
+ data.tar.gz: f0f9fa8988a7e3035aca40ac71f45b05e4531f1f
5
+ SHA512:
6
+ metadata.gz: 7d0e3fbb848b50232641648adbb7eead06ad27990425c66a773e77032b8ccf0badf2f394e073f9fb39dc6f7899531981d78d2f17b2e350a90bbbac155ad64f67
7
+ data.tar.gz: 03d56b401204f69b59108d0778924ab7cfecb4f15fa8171023ecb34511ddb41789339786583c1d2c71114c40394db4d0b050919767cf79f5e7e2b6f454422c15
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Kyle Kirkby
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,50 @@
1
+ # LinaroJekyllTheme
2
+
3
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes` and your sass in `_sass`. To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your Jekyll site's `Gemfile`:
10
+
11
+ ```ruby
12
+ gem "LinaroHyperBlipTheme"
13
+ ```
14
+
15
+ And add this line to your Jekyll site's `_config.yml`:
16
+
17
+ ```yaml
18
+ theme: LinaroHyperBlipTheme
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install LinaroHyperBlipTheme
28
+
29
+ ## Usage
30
+
31
+ TODO: Write usage instructions here. Describe your available layouts, includes, and/or sass.
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## Development
38
+
39
+ To set up your environment to develop this theme, run `bundle install`.
40
+
41
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
42
+
43
+ When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.
44
+
45
+ ## License
46
+
47
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
48
+ =======
49
+ # LinaroJekyllTheme
50
+ A Jekyll theme for Linaro Static Websites.
@@ -0,0 +1,39 @@
1
+ {% if paginator.total_pages > 1 %}
2
+ <div class="text-center">
3
+ <ul class="pagination pagination-sm">
4
+ {% if paginator.previous_page %}
5
+ <li><a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">&laquo; Prev</a></li>
6
+ {% else %}
7
+ <li><a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">&laquo; Prev</a></li>
8
+ {% endif %}
9
+
10
+ {% if paginator.page_trail %}
11
+ {% for trail in paginator.page_trail %}
12
+ <li {% if page.url == trail.path %}class="active"{% endif %}>
13
+ <a href="{% if trail.num == 1 %}/blog/{% else %}
14
+ {{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', trail.num }}{% endif %}"
15
+ title="{{trail.title}}">{{ trail.num }}</a>
16
+ </li>
17
+ {% endfor %}
18
+ {% else %}
19
+ {% for page in (1..paginator.total_pages) %}
20
+ {% if page == paginator.page %}
21
+ <li class="active"><a href="">{{ page }}</a></li>
22
+ {% elsif page == 1 %}
23
+ <li><a href="/blog/">{{ page }}</a></li>
24
+ {% else %}
25
+ <li><a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a></li>
26
+ {% endif %}
27
+ {% endfor %}
28
+ {% endif %}
29
+
30
+
31
+
32
+ {% if paginator.next_page %}
33
+ <li><a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next &raquo;</a></li>
34
+ {% else %}
35
+ <li><a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next &raquo;</a></li>
36
+ {% endif %}
37
+ </ul>
38
+ </div>
39
+ {% endif %}
@@ -0,0 +1,71 @@
1
+ <!-- <div class="col-lg-2 col-md-2 col-sm-4 col-xs-6">
2
+ <h3>Store</h3>
3
+ <ul class="list-unstyled ">
4
+ <li><a href="/product/hikey/">HiKey Board</a></li>
5
+ <li><a href="/product/dragonboard410c/">DragonBoard™ 410c</a></li>
6
+ <li><a href="/product/bubblegum-96/">Bubblegum-96</a></li>
7
+ <li><a href="/product/mediatek-x20/">Mediatek X20</a></li>
8
+ <li><a href="/product/carbon/">Carbon</a></li>
9
+ <li><a href="/product/uarts/">UART Serial Adapter</a></li>
10
+ <li><a href="/products/">View All</a></li>
11
+ </ul>
12
+ </div>
13
+ <div class="col-lg-2 col-md-2 col-sm-4 col-xs-6">
14
+ <h3>Products</h3>
15
+ <ul class="list-unstyled ">
16
+ <li><a href="/products/ce/">Consumer Edition</a></li>
17
+ <li><a href="/products/ee/">Enterprise Edition</a></li>
18
+ <li><a href="/products/iote/">IoT Edition</a></li>
19
+ <li><a href="/products/mezzanine/">Mezzanine Products</a></li>
20
+ <li><a href="/products/accessories/">Accessories</a></li>
21
+ <li><a href="/products/">View All</a></li>
22
+ </ul>
23
+ </div>
24
+ <div class="col-lg-2 col-md-2 col-sm-4 col-xs-6">
25
+ <h3>Specification</h3>
26
+ <ul class="list-unstyled ">
27
+ <li><a href="/ce-specification">Consumer Edition (CE)</a></li>
28
+ <li><a href="/ee-specification">Enterprise Edition (EE)</a></li>
29
+ <li><a href="/ie-specification">IoT Edition (IE)</a></li>
30
+ <li><br /></li>
31
+ <li><b>Addenda</b></li>
32
+ <li><a href="/camera-spec">Camera Module Interface</a></li>
33
+ <li><a href="/tv-specification">96Boards TV Platform</a></li>
34
+ </ul>
35
+ </div>
36
+ <div class="col-lg-2 col-md-2 col-sm-4 col-xs-6">
37
+ <h3>About</h3>
38
+ <ul class="list-unstyled ">
39
+ <li><a href="/specifications/">Specification</a></li>
40
+ <li><a href="/news/">Newsroom</a></li>
41
+ <li><a href="https://www.linaro.org/careers/">Careers</a></li>
42
+ <li><a href="/press/">Press Info</a></li>
43
+ <li><a href="/membership/">Membership</a></li>
44
+ <li><a href="/compliance/">Compliance</a></li>
45
+ <li><a href="/contact/">Contact 96Boards</a></li>
46
+ </ul>
47
+ </div>
48
+ <div class="col-lg-2 col-md-2 col-sm-4 col-xs-6">
49
+ <h3>Support</h3>
50
+ <ul class="list-unstyled ">
51
+ <li><a href="https://discuss.96boards.org/c/products/hikey">Lemaker Hikey</a></li>
52
+ <li><a href="https://discuss.96boards.org/c/products/dragonboard410c">DragonBoard410c</a></li>
53
+ <li><a href="https://discuss.96boards.org/c/products/mediatek-x20">MediaTek-X20</a></li>
54
+ <li><a href="https://discuss.96boards.org/c/products/bubblegum96">Bubblegum-96</a></li>
55
+ <li><a href="https://discuss.96boards.org/c/products/carbon">Carbon</a></li>
56
+ <li><a href="https://discuss.96boards.org/c/products/poplar">Poplar</a></li>
57
+ <li><a href="https://discuss.96boards.org/c/products/mezzanine">Mezzanine Support</a></li>
58
+ </ul>
59
+ </div>
60
+ <div class="col-lg-2 col-md-2 col-sm-4 col-xs-6">
61
+ <h3>Social Media</h3>
62
+ <ul class="list-unstyled ">
63
+ <li><a href="https://github.com/96boards">Github</a></li>
64
+ <li><a href="https://www.facebook.com/96Boards">Facebook</a></li>
65
+ <li><a href="https://www.youtube.com/channel/UCjawhk_W1QnJs3pKIsKLJNg">Youtube</a></li>
66
+ <li><a href="https://twitter.com/96Boards">Twitter</a></li>
67
+ <li><a href="https://www.linkedin.com/company/6637095">Linkedin</a></li>
68
+ <li><a href="http://slideshare.com/96boards">Slideshare</a></li>
69
+ <li><a href="https://plus.google.com/106009833460292139774/posts">Google +</a></li>
70
+ </ul>
71
+ </div> -->
@@ -0,0 +1,54 @@
1
+ {% if page.url == "/about/" or page.url == "/compliance/" or page.url == "/specifications/" or page.url == "/membership/" or page.url == "/news/" %}
2
+ {% include _theme-includes/members.html %}
3
+ {% endif %}
4
+ {% if page.url != "/search/" %}
5
+ {% include _theme-includes/_third-party/mailchimp-homepage.html %}
6
+ {% endif %}
7
+ </div>
8
+ <div class="row">
9
+ <footer>
10
+ <div class="footer" id="footer">
11
+ <div class="container">
12
+ <div class="row main-footer-content">
13
+ {% for column in site.data.footer.columns %}
14
+ <div class="col-xs-6 col-md-2">
15
+ <ul class="list-unstyled ">
16
+ <li><b><a href="{{column.url}}">{{column.title}}</a></b></li>
17
+ {% for item in column.items %}
18
+ <li><a href="{{item.url}}">{{item.text}}</a></li>
19
+ {% endfor %}
20
+ </ul>
21
+ </div>
22
+ {% endfor %}
23
+ </div>
24
+
25
+ <div class="row footer-strip">
26
+ <div class="container">
27
+ <div class="col-md-6 company-footer-bottom">
28
+ <a href="{{site.data.linaro.url}}"><img src="{% asset_path '{{site.data.linaro.footer-logo}}' %}" width="40px" height="100%" alt="Linaro Icon"/></a>
29
+ <a style="color:white;">Portions of this content &copy; 2017 <a href="{{site.data.linaro.url}}">{{site.data.linaro.name}}</a>
30
+ {% for companypage in site.data.footer.companylinks %}
31
+ <span class="coloured-bp">&bull;</span> <a href="{{companypage.url}}">{{companypage.name}}</a>
32
+ {% endfor %}
33
+ </div>
34
+ <div class="col-md-6 social-footer-bottom">
35
+ <a href="http://facebook.com/{{site.facebook_username}}" class="btn btn-social-icon"><i class="icon-facebook"></i></a>
36
+ <a href="https://github.com/{{site.github_username}}" class="btn btn-social-icon"><i class="icon-github-circled"></i></a>
37
+ <a href="https://plus.google.com/{{site.google_plus_username}}/posts" class="btn btn-social-icon"><i class="icon-gplus"></i></a>
38
+ <a href="https://www.linkedin.com/company/{{site.linkedin_username}}" class="btn btn-social-icon"><i class="icon-linkedin"></i></a>
39
+ <a href="https://twitter.com/{{site.twitter_username}}" class="btn btn-social-icon"><i class="icon-twitter"></i></a>
40
+ <a href="https://www.youtube.com/{{site.youtube_username}}" class="btn btn-social-icon"><i class="icon-youtube"></i></a>
41
+ </div>
42
+ <div style="clear:both;"></div>
43
+ </div>
44
+ </div>
45
+ <!--/.container-->
46
+
47
+
48
+
49
+ </div>
50
+
51
+ </footer>
52
+
53
+
54
+ </div>
@@ -0,0 +1,11 @@
1
+ <!--
2
+ __ ____ ____ __
3
+ /'_ `\ /'___\/\ _`\ /\ \
4
+ /\ \L\ \/\ \__/\ \ \L\ \ ___ __ _ __ \_\ \ ____
5
+ \ \___, \ \ _``\ \ _ <' / __`\ /'__`\ /\`'__\/'_` \ /',__\
6
+ \/__,/\ \ \ \L\ \ \ \L\ \/\ \L\ \/\ \L\.\_\ \ \//\ \L\ \/\__, `\
7
+ \ \_\ \____/\ \____/\ \____/\ \__/.\_\\ \_\\ \___,_\/\____/
8
+ \/_/\/___/ \/___/ \/___/ \/__/\/_/ \/_/ \/__,_ /\/___/
9
+ If you are seeing this we are hiring
10
+ www.linaro.org/careers/
11
+ -->
@@ -0,0 +1,24 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>{% if page.title %}{{site.title}} - {{page.title}}
5
+ {% elsif page.page_title %}{{site.title}} - {{page.page_title}}
6
+ {% else %}{{site.title}}- 32- and 64-bit ARM Boards - Develop & Prototype ARM{% endif %}</title>
7
+ {% include _theme-includes/_head/ascii-art.html %}
8
+ {% include _theme-includes/_script-includes/css.html %}
9
+ <link rel="icon" href="/images/favicon.png" type="image/png" />
10
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
11
+ <meta charset="UTF-8">
12
+ {% if site.google-tag-manager %}
13
+ {% include _theme-includes/_script-includes/gtm/gtm-script.html %}
14
+ {% endif %}
15
+ {% if page.keywords %}
16
+ <meta name="keywords" content="{{page.keywords}}">
17
+ {% endif %}
18
+ {% seo title=false %}
19
+ <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
20
+ <!--[if lt IE 9]>
21
+ <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
22
+ <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
23
+ <![endif]-->
24
+ </head>
@@ -0,0 +1,150 @@
1
+ <div class="tabbed-area" id="tabbed-nav-bar"><!-- Nav tabs -->
2
+ <nav class="navbar-default" role="navigation">
3
+ <div class="container">
4
+ <div class="navbar-header">
5
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#tabbed-nav-bar-collapse">
6
+ <span class="sr-only">Toggle navigation</span>
7
+ <span class="icon-bar"></span>
8
+ <span class="icon-bar"></span>
9
+ <span class="icon-bar"></span>
10
+ </button>
11
+ <a class="navbar-brand" id="sub-navigation-header" href=""></a>
12
+ </div>
13
+ <div class="collapse navbar-collapse" id="tabbed-nav-bar-collapse">
14
+ <ul class="nav nav-tabs tabbed-nav" id="tab-row" role="tablist">
15
+ {% assign page_base = page.url | split:'/' %}
16
+ <!--About Sub Navigation START-->
17
+ {% if page.permalink == "/about/" or
18
+ page.permalink == "/specifications/" or
19
+ page.permalink == "/compliance/" or
20
+ page.permalink == "/membership/" or
21
+ page.permalink == "/news/" or
22
+ page.permalink == "/partner/" %}
23
+ <li role="presentation" {% if page.permalink == '/about/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/about/" aria-controls="overview" role="link">96Boards Overview</a></li>
24
+ <li role="presentation" {% if page.permalink == '/specifications/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/specifications/" aria-controls="lswg" role="link">Specifications</a></li>
25
+ <li role="presentation" {% if page.permalink == '/compliance/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/compliance/" aria-controls="lswg" role="link">Compliance</a></li>
26
+ <li role="presentation" {% if page.permalink == '/membership/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/membership/" aria-controls="lswg" role="link">Membership</a></li>
27
+ <li role="presentation" {% if page.permalink == '/news/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/news/" aria-controls="lswg" role="link">News</a></li>
28
+ {% endif %}
29
+ <!--About Sub Navigation END-->
30
+
31
+ <!--Products Sub Navigation START-->
32
+ {% if page.permalink == "/products/" or
33
+ page.permalink == "/products/ce/" or
34
+ page.permalink == "/products/ee/" or
35
+ page.permalink == "/products/ie/" or
36
+ page.permalink == "/products/mezzanine/" or
37
+ page.permalink == "/products/accessories/" %}
38
+ {% assign active == "active" %}
39
+ <li role="presentation" {% if page.permalink == '/products/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/products/" aria-controls="overview" role="link">Latest Boards</a></li>
40
+ <li role="presentation" {% if page.permalink == '/products/ce/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/products/ce/" aria-controls="lswg" role="link">Consumer Edition</a></li>
41
+ <li role="presentation" {% if page.permalink == '/products/ee/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/products/ee/" aria-controls="lswg" role="link">Enterprise Edition</a></li>
42
+ <li role="presentation" {% if page.permalink == '/products/ie/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/products/ie/" aria-controls="lswg" role="link">IoT Edition</a></li>
43
+ <li role="presentation" {% if page.permalink == '/products/mezzanine/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/products/mezzanine/" aria-controls="lswg" role="link">Mezzanine Products</a></li>
44
+ <li role="presentation" {% if page.permalink == '/products/accessories/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/products/accessories/" aria-controls="lswg" role="link">Accessories</a></li>
45
+ {% endif %}
46
+
47
+ {% if page.permalink == "/projects/" or
48
+ page_base[1] == "projects" and page_base[2] or
49
+ page.permalink == "/projects/contribute.md/" or
50
+ page.permalink == "/projects/faq.md/" or
51
+ page.permalink == "/projects/submit.md/" %}
52
+ {% if page_base[2] and
53
+ page_base[2] != "faq.md" and
54
+ page_base[2] != "contribute.md" and
55
+ page_base[2] != "submit.md" %}
56
+ <li role="presentation" class="active tabbed-nav-btn"><a href="{{page.permalink}}" aria-controls="overview" role="link">{{page.title}}</a></li>
57
+ {% endif %}
58
+ <li role="presentation" {% if page.permalink == '/projects/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/projects/" aria-controls="overview" role="link">Projects</a></li>
59
+ <li role="presentation" {% if page.permalink == '/projects/contribute.md/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/projects/contribute.md/" aria-controls="lswg" role="link">Contribute</a></li>
60
+ <li role="presentation" {% if page.permalink == '/projects/faq.md/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/projects/faq.md/" aria-controls="lswg" role="link">FAQ</a></li>
61
+ <li role="presentation" class="tabbed-nav-btn"><a href="https://www.96boards.org/openhours/" aria-controls="lswg" role="link">OpenHours</a></li>
62
+ <li role="presentation" {% if page.permalink == '/projects/submit.md/' %}class="active tabbed-nav-btn pull-right"{% else %}class="tabbed-nav-btn pull-right"{% endif %}><a href="/projects/submit.md/" aria-controls="lswg" role="link">Submit a Project</a></li>
63
+ {% endif %}
64
+
65
+ {% if page.permalink == "/product/debug/" or
66
+ page.permalink == "/product/power/" or
67
+ page.permalink == "/product/misc/" or
68
+ page.permalink == "/product/adapter/" %}
69
+ <li role="presentation" class="tabbed-nav-btn"><a href="/products/accessories/" aria-controls="overview" role="link">All Accessories</a></li>
70
+ <li role="presentation" {% if page.permalink == '/product/debug/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/product/debug/" aria-controls="lswg" role="link">Debug</a></li>
71
+ <li role="presentation" {% if page.permalink == '/product/power/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/product/power/" aria-controls="lswg" role="link">Power</a></li>
72
+ <li role="presentation" {% if page.permalink == '/product/adapter/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/product/adapter/" aria-controls="lswg" role="link">Adapters</a></li>
73
+ <li role="presentation" {% if page.permalink == '/product/misc/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/product/misc/" aria-controls="lswg" role="link">Misc</a></li>
74
+ {% endif %}
75
+
76
+ {% assign product = site.data.product_db.products | where: "product_permalink", page.permalink | first %}
77
+ {% if product %}
78
+ {% if product.product_specification == "ce"
79
+ or product.product_specification == "ee"
80
+ or product.product_specification == "ie"
81
+ or product.product_specification == "mezzanine" %}
82
+ {% assign page-url = page.url | downcase %}
83
+ {% assign getting-started = product.product_getting_started %}
84
+ {% assign tutorials = product.product_permalink | split: "/"%}
85
+ {% assign tutorials = product.product_tutorials_link %}
86
+ <li role="presentation" class="active tabbed-nav-btn"><a href="{{ page.permalink }}" aria-controls="overview" role="link">{{ product.product_title }}</a></li>
87
+ {% if product.product_getting_started %}
88
+ <li role="presentation" class="tabbed-nav-btn"><a href="{{getting-started}}" aria-controls="lswg" role="link">Getting Started</a></li>
89
+ {% endif %}
90
+ {% if product.product_documentation_link %}
91
+ <li role="presentation" class="tabbed-nav-btn"><a href="{{ product.product_documentation_link }}" aria-controls="lswg" role="link">Documentation</a></li>
92
+ {% endif %}
93
+ {% if product.product_tutorials_link %}
94
+ <li role="presentation" class="tabbed-nav-btn"><a href="{{tutorials}}" aria-controls="lswg" role="link">Tutorial</a></li>
95
+ {% endif %}
96
+ {% if product.product_support_link %}
97
+ <li role="presentation" class="tabbed-nav-btn pull-right"><a href="{{ product.product_support_link }}" aria-controls="lswg" role="link">Support Forum</a></li>
98
+ {% endif %}
99
+ {% else %}
100
+ <li role="presentation" class="tabbed-nav-btn"><a href="/products/" aria-controls="overview" role="link">Latest Boards</a></li>
101
+ <li role="presentation" class="tabbed-nav-btn"><a href="/products/ce/" aria-controls="lswg" role="link">Consumer Edition</a></li>
102
+ <li role="presentation" class="tabbed-nav-btn"><a href="/products/ee/" aria-controls="lswg" role="link">Enterprise Edition</a></li>
103
+ <li role="presentation" class="tabbed-nav-btn"><a href="/products/ie/" aria-controls="lswg" role="link">IoT Edition</a></li>
104
+ <li role="presentation" class="active tabbed-nav-btn"><a href="/products/mezzanine/" aria-controls="lswg" role="link">Mezzanine Products</a></li>
105
+ <li role="presentation" class="tabbed-nav-btn"><a href="/products/accessories/" aria-controls="lswg" role="link">Accessories</a></li>
106
+ {% endif %}
107
+ {% endif %}
108
+
109
+ {% if page_base[1] == "product"%}
110
+ {% if page.permalink == "/product/dragonboard410c-buy.md/" %}
111
+ <li role="presentation"><a href="/products/" aria-controls="overview" role="link">Latest Boards</a></li>
112
+ <li role="presentation" {% if page.permalink == '/product/dragonboard410c-buy.md/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/products/ce/" aria-controls="lswg" role="link">Consumer Edition</a></li>
113
+ <li role="presentation"><a href="/products/ee/" aria-controls="lswg" role="link">Enterprise Edition</a></li>
114
+ <li role="presentation"><a href="/products/ie/" aria-controls="lswg" role="link">IoT Edition</a></li>
115
+ <li role="presentation"><a href="/products/mezzanine/" aria-controls="lswg" role="link">Mezzanine Products</a></li>
116
+ <li role="presentation"><a href="/products/accessories/" aria-controls="lswg" role="link">Accessories</a></li>
117
+ {% endif %}
118
+ {% endif %}
119
+
120
+ {% if page_base[1] == "documentation" %}
121
+ {% if page_base[3] %}
122
+ {% assign product-name = page_base[3]%}
123
+ {% capture documentation-link %}/{{page_base[1]}}/{{page_base[2]}}/{{page_base[3]}}/{% endcapture %}
124
+ {% capture support-link %}/{{page_base[1]}}/{{page_base[2]}}/{{page_base[3]}}/{% endcapture %}
125
+ {% capture documentation-link %}/{{page_base[1]}}/{{page_base[2]}}/{{page_base[3]}}/{% endcapture %}
126
+ <li role="presentation" class="active tabbed-nav-btn"><a href="{{documentation-link}}" aria-controls="overview" role="link">{{ product-name | capitalize}}</a></li>
127
+ <li role="presentation" {% if page.permalink == '/documentation/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/documentation/" aria-controls="overview" role="link">All Docs</a></li>
128
+ <li role="presentation" {% if page.permalink == '/documentation/ConsumerEdition/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/documentation/ConsumerEdition/" aria-controls="overview" role="link">CE</a></li>
129
+ <li role="presentation" {% if page.permalink == '/documentation/EnterpriseEdition/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/documentation/EnterpriseEdition/" aria-controls="lswg" role="link">EE</a></li>
130
+ <li role="presentation" {% if page.permalink == '/documentation/IoTEdition/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/documentation/IoTEdition/" aria-controls="lswg" role="link">IE</a></li>
131
+ <li role="presentation" {% if page.permalink == '/documentation/MezzanineProducts/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/documentation/MezzanineProducts/" aria-controls="lswg" role="link">Mezzanine</a></li>
132
+ <li role="presentation" {% if page.permalink == '/documentation/Specifications/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/documentation/Specifications/" aria-controls="lswg" role="link">Specifications</a></li>
133
+ {% else %}
134
+ <li role="presentation" {% if page.permalink == '/documentation/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/documentation/" aria-controls="overview" role="link">All Docs</a></li>
135
+ <li role="presentation" {% if page.permalink == '/documentation/ConsumerEdition/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/documentation/ConsumerEdition/" aria-controls="overview" role="link">Consumer Edition</a></li>
136
+ <li role="presentation" {% if page.permalink == '/documentation/EnterpriseEdition/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/documentation/EnterpriseEdition/" aria-controls="lswg" role="link">Enterprise Edition</a></li>
137
+ <li role="presentation" {% if page.permalink == '/documentation/IoTEdition/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/documentation/IoTEdition/" aria-controls="lswg" role="link">IoT Edition</a></li>
138
+ <li role="presentation" {% if page.permalink == '/documentation/MezzanineProducts/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/documentation/MezzanineProducts/" aria-controls="lswg" role="link">Mezzanine Products</a></li>
139
+ <li role="presentation" {% if page.permalink == '/documentation/Specifications/' %}class="active tabbed-nav-btn"{% else %}class="tabbed-nav-btn"{% endif %}><a href="/documentation/Specifications/" aria-controls="lswg" role="link">Specifications</a></li>
140
+ {% endif %}
141
+ {% endif %}
142
+
143
+ {% if page_base[1] == "blog" %}
144
+ <li role="presentation" class="active tabbed-nav-btn"><a href="/blog/" aria-controls="overview" role="link">Blog</a></li>
145
+ {% endif %}
146
+ </ul>
147
+ </div>
148
+ </div>
149
+ </nav>
150
+ </div>
@@ -0,0 +1,55 @@
1
+ {% if site.google-tag-manager %}
2
+ {% include _theme-includes/_script-includes/gtm/gtm-noscript.html %}
3
+ {% endif %}
4
+ <div class="main-navbar">
5
+ <nav class="{% if site.navigation.style %}{{ site.navigation.style }}{% else %}navbar-inverse navbar-fixed-top{% endif %}" role="navigation" id="main-navigation">
6
+ <div class="container">
7
+
8
+ <input type="checkbox" id="navbar-toggle-cbox">
9
+
10
+ <!-- NAVBAR HEADER-->
11
+ <div class="navbar-header">
12
+ <label for="navbar-toggle-cbox" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse" aria-expanded="false" aria-controls="navbar">
13
+ <span class="sr-only">Toggle navigation</span>
14
+ <span class="icon-bar"></span>
15
+ <span class="icon-bar"></span>
16
+ <span class="icon-bar"></span>
17
+ </label>
18
+ {% if site.navigation.brand %}
19
+ <a class="navbar-brand " href="{{site.navigation.brand.url}}">
20
+ {% if site.navigation.brand.image %}
21
+ <img src="{% asset_path '{{site.navigation.brand.image}}' %}" alt="{{site.title}} Logo." id="brand-image">
22
+ {% else %}
23
+ {{site.title}}
24
+ {% endif %}
25
+ </a>
26
+ {% endif %}
27
+ </div>
28
+
29
+ <!-- NAVBAR COLLAPSE-->
30
+ <div class="collapse navbar-collapse" id="navbar-collapse">
31
+ <ul class="nav navbar-nav navbar-right" id="navbar-buttons">
32
+ {% for section in site.navigation.pages %}
33
+ {% if section.options %}
34
+ <li class="dropdown">
35
+ <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">{{section.title}} <span class="caret"></span></a>
36
+ <ul class="dropdown-menu">
37
+ {% for menu_option in section.options %}
38
+ <li>
39
+ <a target="_self" href="{{menu_option.url}}" title="{{menu_option.txt}}">{{menu_option.text}}</a>
40
+ </li>
41
+ {% endfor %}
42
+ </ul>
43
+ </li>
44
+ {% else %}
45
+ <li><a href="{{section.url}}" title="{{section.title}}">{{section.title}}</a></li>
46
+ {% endif %}
47
+ {% endfor %}
48
+ </ul>
49
+ </div>
50
+
51
+ </div>
52
+ </nav>
53
+ </div>
54
+ <!--- Page Start Main Container--->
55
+ <div id="main-container">