okf-pub-theme 0.2.9 → 0.2.10
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/_includes/team.html +14 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 95bd11c6cddbc0616899d6231e626cdb165791bb0bb594ffc984a9beabd88ca3
|
|
4
|
+
data.tar.gz: '07268422ca9bd0561c35d32498ae25137fd37bcacfd446bf1fe807eab1e5af63'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df66d7749c1384e07a671ea64ec8793d0deddf336a6b85f66c2aaa98ab5f565ff36155777513d370f822f45e5253d5fe69e37d2757dca7cd45251a733db1eb0f
|
|
7
|
+
data.tar.gz: 7c22933dea317e6fcbfcdf1f606793826c106a0c61272cbb6e7036c2eb1edb46f8d96d77a5633f7bbd0893d28a2b50dfc5f0b31b230e62404901420999509baa
|
data/_includes/team.html
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<div class="team">
|
|
2
|
+
{% for person in site.data.team %}
|
|
3
|
+
<div>
|
|
4
|
+
<p class="team-entry">
|
|
5
|
+
<strong class="team-entry__name">{{ person.name }}</strong>
|
|
6
|
+
{% assign img_path = person.name | downcase | split: ' ' | join: '' %}
|
|
7
|
+
<img class="team-entry__img"
|
|
8
|
+
src="/assets/images/team/{{ img_path }}.jpg"
|
|
9
|
+
alt="Bild von {{ person.name }}"></p>
|
|
10
|
+
<p><em>{{ person.position }}</em><br>
|
|
11
|
+
{{ person.text }}</p>
|
|
12
|
+
</div>
|
|
13
|
+
{% endfor %}
|
|
14
|
+
</div>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: okf-pub-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- lislis
|
|
@@ -98,6 +98,7 @@ files:
|
|
|
98
98
|
- _includes/matomo.html
|
|
99
99
|
- _includes/next_chapter.html
|
|
100
100
|
- _includes/outcomes.html
|
|
101
|
+
- _includes/team.html
|
|
101
102
|
- _layouts/default.html
|
|
102
103
|
- _layouts/home.html
|
|
103
104
|
- _layouts/page.html
|