jekyll-theme-open-project 1.0.0.rc3 → 1.0.0.rc4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/_includes/home-hub.html +3 -1
- data/_includes/home-project.html +18 -2
- data/_includes/tag-list.html +5 -7
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7cfa1ffc659c26125e99593ba8bbb61fb084ea6e
|
4
|
+
data.tar.gz: f52205c48f6aa95eece22e869b920e7b903ac05b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 674dd6210e6a9ac1e6cbadee3e0c5a373969ad6c25172fd09606bdce87b82641538e1dc5c89bccc4f35c1462e07c68b09145424021d52256249daedc22049db3
|
7
|
+
data.tar.gz: 6f3b2111a1abdf489bd175fea905017e0a2f1a14e23e3b2e4ef57c55f722b2ff658629226bf03f397240d6a9abdde7f3ac64462681125304bbf2ceb4ceb1cda1
|
data/README.md
CHANGED
@@ -238,7 +238,11 @@ description: >-
|
|
238
238
|
# Whether the project is included in featured three projects on hub home page
|
239
239
|
featured: true | false
|
240
240
|
|
241
|
+
site:
|
242
|
+
git_repo_url: <Git URL to standalone project site source repo>
|
241
243
|
home_url: <URL to standalone project site>
|
244
|
+
|
245
|
+
tags: [Ruby, Python, RFC]
|
242
246
|
```
|
243
247
|
|
244
248
|
### Project index page
|
data/_includes/home-hub.html
CHANGED
data/_includes/home-project.html
CHANGED
@@ -30,7 +30,15 @@
|
|
30
30
|
{{ item.description }}
|
31
31
|
</p>
|
32
32
|
|
33
|
-
|
33
|
+
<footer class="meta">
|
34
|
+
{% include tag-list.html tags=item.tags %}
|
35
|
+
|
36
|
+
{% if item.last_update %}
|
37
|
+
<section class="last-update">
|
38
|
+
Last update: {{ item.last_update | date: "%d/%m/%Y" }}
|
39
|
+
</section>
|
40
|
+
{% endif %}
|
41
|
+
</footer>
|
34
42
|
</a>
|
35
43
|
{% endfor %}
|
36
44
|
</div>
|
@@ -65,7 +73,15 @@
|
|
65
73
|
{{ item.description }}
|
66
74
|
</p>
|
67
75
|
|
68
|
-
|
76
|
+
<footer class="meta">
|
77
|
+
{% include tag-list.html tags=item.tags %}
|
78
|
+
|
79
|
+
{% if item.last_update %}
|
80
|
+
<section class="last-update">
|
81
|
+
Last update: {{ item.last_update | date: "%d/%m/%Y" }}
|
82
|
+
</section>
|
83
|
+
{% endif %}
|
84
|
+
</footer>
|
69
85
|
</a>
|
70
86
|
{% endfor %}
|
71
87
|
</div>
|
data/_includes/tag-list.html
CHANGED
@@ -1,10 +1,8 @@
|
|
1
1
|
{% assign num_tags = include.tags | size %}
|
2
2
|
{% if num_tags > 0 %}
|
3
|
-
<
|
4
|
-
|
5
|
-
{
|
6
|
-
|
7
|
-
|
8
|
-
</ul>
|
9
|
-
</footer>
|
3
|
+
<ul class="tags">
|
4
|
+
{% for tag in include.tags %}
|
5
|
+
<li>{{ tag }}</li>
|
6
|
+
{% endfor %}
|
7
|
+
</ul>
|
10
8
|
{% endif %}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-open-project
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
@@ -72,14 +72,14 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: 1.0.0.
|
75
|
+
version: 1.0.0.rc4
|
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.0.0.
|
82
|
+
version: 1.0.0.rc4
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: bundler
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|