jekyll-theme-rop 2.1.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +1084 -0
  4. data/_config.yml +89 -0
  5. data/_data/placeholder.yml +0 -0
  6. data/_includes/_nav-item.html +38 -0
  7. data/_includes/_post-meta.html +24 -0
  8. data/_includes/external-link.html +59 -0
  9. data/_includes/featured_posts.html +11 -0
  10. data/_includes/featured_software.html +55 -0
  11. data/_includes/featured_specs.html +31 -0
  12. data/_includes/head.html +9 -0
  13. data/_includes/home-hero.html +27 -0
  14. data/_includes/home-hub.html +81 -0
  15. data/_includes/home-project.html +19 -0
  16. data/_includes/index-page-hero.html +3 -0
  17. data/_includes/index-page-item-filter.html +83 -0
  18. data/_includes/item-doc-page.html +138 -0
  19. data/_includes/item-external-links.html +5 -0
  20. data/_includes/legal.html +24 -0
  21. data/_includes/logo.html +1 -0
  22. data/_includes/nav-links.html +45 -0
  23. data/_includes/nav-page-link.html +17 -0
  24. data/_includes/post-author-pic.html +13 -0
  25. data/_includes/post-card.html +59 -0
  26. data/_includes/project-doc-page.html +0 -0
  27. data/_includes/project-nav.html +0 -0
  28. data/_includes/scripts.html +0 -0
  29. data/_includes/social-links.html +23 -0
  30. data/_includes/software-card-hub.html +45 -0
  31. data/_includes/software-symbol.html +6 -0
  32. data/_includes/symbol.svg +19 -0
  33. data/_includes/tag-list.html +17 -0
  34. data/_includes/title.html +1 -0
  35. data/_layouts/blog-index.html +19 -0
  36. data/_layouts/default.html +156 -0
  37. data/_layouts/docs-base.html +87 -0
  38. data/_layouts/home.html +13 -0
  39. data/_layouts/page.html +5 -0
  40. data/_layouts/post.html +57 -0
  41. data/_layouts/product.html +9 -0
  42. data/_layouts/project-index.html +45 -0
  43. data/_layouts/software-index.html +31 -0
  44. data/_layouts/spec-index.html +31 -0
  45. data/_layouts/spec.html +6 -0
  46. data/_pages/blog.html +8 -0
  47. data/_pages/software.html +6 -0
  48. data/_pages/specs.html +6 -0
  49. data/_sass/headroom.scss +22 -0
  50. data/_sass/jekyll-theme-open-project.scss +2 -0
  51. data/_sass/jekyll-theme-rop.scss +798 -0
  52. data/_sass/normalize.scss +424 -0
  53. data/_sass/rop-base.scss +572 -0
  54. data/_sass/rop-header-footer.scss +366 -0
  55. data/_sass/rop-mixins.scss +871 -0
  56. data/assets/css/style.scss +13 -0
  57. data/assets/fa/fa-brands.js +456 -0
  58. data/assets/fa/fa-solid.js +915 -0
  59. data/assets/fa/fontawesome.js +1805 -0
  60. data/assets/img/external-link.svg +4 -0
  61. data/assets/js/adoc-toc.js +175 -0
  62. data/assets/js/anchor-scroll.js +81 -0
  63. data/assets/js/clipboard.min.js +7 -0
  64. data/assets/js/headroom.min.js +7 -0
  65. data/assets/js/opf.js +289 -0
  66. data/assets/listing-widget.js +19 -0
  67. metadata +276 -0
@@ -0,0 +1,45 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ {% assign projects = site.projects | where_exp: "item", "item.home_url != nil" %}
5
+ {% assign num_projects = projects | size %}
6
+
7
+ {% if num_projects > 0 %}
8
+ <section class="items">
9
+ {% include assets/symbol.svg %}
10
+
11
+ {% for project in projects %}
12
+ <a class="item {% if project.featured == true %}featured{% endif %}"
13
+ href="{{ project.home_url }}"
14
+ role="article">
15
+
16
+ <header>
17
+ <div class="logo-container">
18
+ {% assign symbol_path = project.path | split: "/" | slice: 1, 1 | join: "/" | append: "/assets/symbol.svg" %}
19
+ {% assign relative_symbol_path = "/projects/" | append: symbol_path %}
20
+ <div class="logo"><img src="{{ relative_symbol_path }}"></div>
21
+ </div>
22
+ <h3 class="title">{{ project.title }}</h3>
23
+ </header>
24
+
25
+ <p class="body">
26
+ {{ project.description }}
27
+ </p>
28
+
29
+ <footer class="meta">
30
+ {% assign num_tags = project.tags | size %}
31
+ {% if num_tags > 0 %}
32
+ <ul class="tags">
33
+ {% for tag in project.tags %}
34
+ <li>{{ tag }}</li>
35
+ {% endfor %}
36
+ </ul>
37
+ {% endif %}
38
+ </footer>
39
+
40
+ </a>
41
+ {% endfor %}
42
+ </section>
43
+ {% else %}
44
+ <p>No projects to display.</p>
45
+ {% endif %}
@@ -0,0 +1,31 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% include index-page-item-filter.html url_tag_prefix="/software/" tag_namespaces="software" items=site.all_software tag=page.tag %}
6
+
7
+ <section class="items">
8
+ {% if site.is_hub %}
9
+ {% include assets/symbol.svg %}
10
+ {% endif %}
11
+
12
+ {% if page.tag and page.items %}
13
+ {% for item in page.items %}
14
+ {% include software-card-hub.html item=item item_type='software' %}
15
+ {% endfor %}
16
+ {% elsif site.is_hub %}
17
+ {% for item in site.all_software %}
18
+ {% include software-card-hub.html item=item item_type='software' %}
19
+ {% endfor %}
20
+ {% else %}
21
+ {% if site.num_featured_software > 0 %}
22
+ {% for item in site.featured_software %}
23
+ {% include software-card-hub.html item=item item_type='software' %}
24
+ {% endfor %}
25
+ <hr>
26
+ {% endif %}
27
+ {% for item in site.non_featured_software %}
28
+ {% include software-card-hub.html item=item item_type='software' %}
29
+ {% endfor %}
30
+ {% endif %}
31
+ </section>
@@ -0,0 +1,31 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% include index-page-item-filter.html url_tag_prefix="/specs/" tag_namespaces="specs" items=site.all_specs tag=page.tag %}
6
+
7
+ <section class="items">
8
+ {% if site.is_hub %}
9
+ {% include assets/symbol.svg %}
10
+ {% endif %}
11
+
12
+ {% if page.tag and page.items %}
13
+ {% for item in page.items %}
14
+ {% include software-card-hub.html item=item item_type='specs' %}
15
+ {% endfor %}
16
+ {% elsif site.is_hub %}
17
+ {% for item in site.all_specs %}
18
+ {% include software-card-hub.html item=item item_type='specs' %}
19
+ {% endfor %}
20
+ {% else %}
21
+ {% if site.num_featured_specs > 0 %}
22
+ {% for item in site.featured_specs %}
23
+ {% include software-card-hub.html item=item item_type='specs' %}
24
+ {% endfor %}
25
+ <hr>
26
+ {% endif %}
27
+ {% for item in site.non_featured_specs %}
28
+ {% include software-card-hub.html item=item item_type='specs' %}
29
+ {% endfor %}
30
+ {% endif %}
31
+ </section>
@@ -0,0 +1,6 @@
1
+ ---
2
+ layout: default
3
+ html-class: docs-page
4
+ ---
5
+
6
+ {% include item-doc-page.html items=site.specs item_type='specs' %}
data/_pages/blog.html ADDED
@@ -0,0 +1,8 @@
1
+ ---
2
+ title: Blog
3
+ description: >-
4
+ Get the latest announcements and technical how-to’s
5
+ about our software and projects.
6
+ layout: blog-index
7
+ hero_include: index-page-hero.html
8
+ ---
@@ -0,0 +1,6 @@
1
+ ---
2
+ title: Software ecosystem
3
+ description: Open-source tools conforming to our specifications.
4
+ layout: software-index
5
+ hero_include: index-page-hero.html
6
+ ---
data/_pages/specs.html ADDED
@@ -0,0 +1,6 @@
1
+ ---
2
+ title: Specifications
3
+ description: Standards at the foundation of this project.
4
+ layout: spec-index
5
+ hero_include: index-page-hero.html
6
+ ---
@@ -0,0 +1,22 @@
1
+ .headroom {
2
+ will-change: transform;
3
+ transition: transform .1s linear;
4
+ }
5
+ .headroom--pinned {
6
+ transform: translateY(0%);
7
+ }
8
+ .headroom--unpinned {
9
+ transform: translateY(-100%);
10
+ }
11
+
12
+ body.with-headroom {
13
+ &.docs-page {
14
+ .underlay.header {
15
+ position: fixed;
16
+ top: 0;
17
+ left: 0;
18
+ right: 0;
19
+ z-index: 6;
20
+ }
21
+ }
22
+ }
@@ -0,0 +1,2 @@
1
+ // Compatibility file for old name
2
+ @import "jekyll-theme-rop";