jekyll-theme-open-project 1.2.3 → 1.2.4
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.
- checksums.yaml +4 -4
- data/README.md +3 -2
- data/_includes/nav-links.html +9 -9
- data/_layouts/default.html +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fdb93d4607f289a5da6311b686884d6ec2af0db01ab917af07e77bc0f9af93a2
|
|
4
|
+
data.tar.gz: 0cc47f40c7d23bac4380796927cad21ddf97158c097a9ec7a21396b947e47966
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 163a423f343cb143de09dea410319d38c4a484d4364e8538437e070cb1e649c1bfa7db423be387352399e1f84a92551ce4f2b228473db6d6211515523d97c957
|
|
7
|
+
data.tar.gz: 79ce83d949616e08a2d0e490ef467cf278717000909f6f94086d4c7d3593ae464f888cfe98d69df2c1b3cff106e24461153e03cee263aafb2a248522495a9faa
|
data/README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# Open Project theme by Ribose
|
|
2
2
|
|
|
3
|
-
Open Project is a
|
|
4
|
-
|
|
3
|
+
Open Project is a Jekyll theme (with the accompanying plugin)
|
|
4
|
+
aiming to help organizations and individuals present
|
|
5
|
+
open-source software and specifications in a navigable and elegant way.
|
|
5
6
|
|
|
6
7
|
Open Project fits two types of sites:
|
|
7
8
|
that describe one individual project, and that combine projects into sort of an open hub.
|
data/_includes/nav-links.html
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{% include nav-page-link.html url="/" title="Home" %}
|
|
2
2
|
{% assign contact_link = "mailto:" | append: site.contact_email %}
|
|
3
3
|
|
|
4
|
+
{% if site.algolia_search %}
|
|
5
|
+
<div class="search-widget">
|
|
6
|
+
<input type="search" id="siteSearchInput" placeholder="Type to search…">
|
|
7
|
+
</div>
|
|
8
|
+
{% endif %}
|
|
9
|
+
|
|
4
10
|
{% if site.is_hub %}
|
|
5
11
|
{% include nav-page-link.html url="/projects/" title="Projects" %}
|
|
6
12
|
|
|
@@ -16,12 +22,6 @@
|
|
|
16
22
|
|
|
17
23
|
{% else %}
|
|
18
24
|
|
|
19
|
-
{% if site.algolia_search %}
|
|
20
|
-
<div class="search-widget">
|
|
21
|
-
<input type="search" id="siteSearchInput" placeholder="Type to search…">
|
|
22
|
-
</div>
|
|
23
|
-
{% endif %}
|
|
24
|
-
|
|
25
25
|
{% if site.num_all_software > 0 %}
|
|
26
26
|
{% include nav-page-link.html url="/software/" title="Software ecosystem" active_for_nested=true %}
|
|
27
27
|
{% endif %}
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
{% if site.num_posts_combined > 0 %}
|
|
35
35
|
{% include nav-page-link.html url="/blog/" title="Blog" active_for_nested=true %}
|
|
36
36
|
{% endif %}
|
|
37
|
+
{% endif %}
|
|
37
38
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
{% endif %}
|
|
39
|
+
{% if site.algolia_search %}
|
|
40
|
+
<a href="javascript: void 0;" class="search"><i class="fas fa-search"></i></a>
|
|
41
41
|
{% endif %}
|
data/_layouts/default.html
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<link id="themeCSS" rel="stylesheet" href="{{ "assets/css/style.css" | relative_url }}">
|
|
12
12
|
<script defer src="https://pro.fontawesome.com/releases/v5.1.0/js/all.js" integrity="sha384-E5SpgaZcbSJx0Iabb3Jr2AfTRiFnrdOw1mhO19DzzrT9L+wCpDyHUG2q07aQdO6E" crossorigin="anonymous"></script>
|
|
13
13
|
|
|
14
|
-
{% if site.
|
|
14
|
+
{% if site.algolia_search %}
|
|
15
15
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.css">
|
|
16
16
|
{% endif %}
|
|
17
17
|
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
</footer>
|
|
86
86
|
</div>
|
|
87
87
|
|
|
88
|
-
{% if site.
|
|
88
|
+
{% if site.algolia_search %}
|
|
89
89
|
<script src="https://cdn.jsdelivr.net/npm/docsearch.js@2/dist/cdn/docsearch.min.js"></script>
|
|
90
90
|
|
|
91
91
|
{% comment %}
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
apiKey: '{{ site.algolia_search.api_key }}',
|
|
99
99
|
indexName: '{{ site.algolia_search.index_name }}',
|
|
100
100
|
inputSelector: 'input[type=search]',
|
|
101
|
-
debug:
|
|
101
|
+
debug: true,
|
|
102
102
|
});
|
|
103
103
|
};
|
|
104
104
|
</script>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-open-project
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -72,14 +72,14 @@ dependencies:
|
|
|
72
72
|
requirements:
|
|
73
73
|
- - '='
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 1.2.
|
|
75
|
+
version: 1.2.4
|
|
76
76
|
type: :runtime
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - '='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 1.2.
|
|
82
|
+
version: 1.2.4
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: bundler
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|