Skip to content

Commit e0ebe19

Browse files
authored
introduce a second list of organizations - 'supporting organizations' (#69)
1 parent 6941d09 commit e0ebe19

File tree

5 files changed

+40
-1
lines changed

5 files changed

+40
-1
lines changed

MANIFESTO.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ The Open Operations Manifesto is initiated by the [Sovereign Cloud Stack Communi
3737

3838
We encourage you to join our [mailing list](https://scs.sovereignit.de/mailman3/postorius/lists/list.openoperations.org/) and attend our regular meetings. If you want to contribute to our manifesto or spread the word by signing it, please read through the [README](https://github.com/SovereignCloudStack/open-operations-manifesto/#readme) or reach out to us at <[email protected]>.
3939

40+
## Supporting Organizations
41+
42+
These organizations and people actively support the idea behind Open Operations:
43+
44+
{% include supporting_organizations.html %}
45+
4046
## Founding Organizations
4147

42-
{% include organizations.html %}
48+
These organizations and people initially got this movement started:
49+
50+
{% include founding_organizations.html %}

_data/organizations.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,10 @@ founding:
3939
role: Editor in Chief
4040

4141
supporting:
42+
- name: OSISM GmbH
43+
logo: /assets/osism.png
44+
url: "https://osism.cloud"
45+
- name: Sovereign Cloud Stack
46+
logo: /assets/scs-logo.png
47+
url: "https://sovereigncloudstack.org"
48+
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<div class="mb-3"></div>
2+
<div class="row row-cols-1 row-cols-md-2 g-4" data-masonry='{"percentPosition": true }'>
3+
{% assign supporting_organizations_sorted = site.data.organizations.supporting | sort_natural: 'name' %}
4+
{% for organization in supporting_organizations_sorted %}
5+
<div class="col">
6+
<div class="card">
7+
<img src="{{organization.logo}}" class="card-img-top" alt="{{organization.name}}" class="card-img-top mx-auto d-block" style="padding: 30px; height: 150px; width: 300px; object-fit: contain; object-position: center;" >
8+
<div class="card-body">
9+
<p class="card-text">
10+
<ul class="list-group list-group-flush">
11+
{% assign contributors_sorted = organization.contributors | sort_natural: 'role' %}
12+
{% for contributor in contributors_sorted %}
13+
<li class="list-group-item" style="line-height: 1.2;">
14+
<small>{{contributor.name}}</small><br/>
15+
<small class="text-muted"><em>{{contributor.role}}</em></small>
16+
</li>
17+
{% endfor %}
18+
</ul>
19+
</p>
20+
</div>
21+
</div>
22+
</div>
23+
{% endfor %}
24+
</div>

assets/scs-logo.png

5.2 KB
Loading

0 commit comments

Comments
 (0)