Compare commits

...

2 Commits

5 changed files with 77 additions and 1 deletions

37
data/case_studies.json Normal file
View File

@ -0,0 +1,37 @@
[
{
"title": "[Servers Co-op](https://servers.coop)",
"thumbnail": "",
"content": "is an algorithm for co-operation: a technical, governance, and cost-sharing stack which radically reduces the cost and complexity of setting up a server hosting provider. Our goal is to support an emerging ecosystem of grassroots, decentralised server hosting providers by stewarding a technical and social toolkit designed for free software communities worldwide."
},
{
"title": "[Autonomic Co-op](https://autonomic.zone)",
"thumbnail": "",
"content": "is a co-operative that is owned and run by its workers. We build technologies and infrastructure to empower users to make a positive impact on the world. All of our services reflect our commitment to our core values: sustainability, transparency & privacy."
},
{
"title": "[Vermont Real Estate Cooperative](https://vrec.coop) (VREC)",
"thumbnail": "",
"content": "is a cooperative business formed by Vermont residents to own and run commercial and residential property. We are a member-owned and -controlled business that offers: for our community, sustainable local ownership of real estate that builds community wealth. For tenants: reasonable, stable rents and a way to share in any surplus. For member-owners: a values-based investment, a vote in key decisions, and the opportunity to help shape the direction of the business. A way to support the solidarity economy: part of our mission is to rent to co-ops, collectives, and similar social enterprises."
},
{
"title": "[United Tech and Allied Workers](https://utaw.tech) (UTAW)",
"thumbnail": "",
"content": "is a branch of the Communication Workers Union which seeks to represent and fight for workers interests in the tech industry. UTAW in its organisation collectivises the small amount of power each worker has in their workplace into a force capable of meeting the boss's power in every workplace. The union branch responsibly wields worker power to fight for our interests - by negotiating agreements with employers, providing legal support, and if necessary, mobilising workers to take part in direct action."
},
{
"title": "[Industrial Workers of the World](https://iww.org.uk) (IWW)",
"thumbnail": "",
"content": "is a revolutionary global union, fighting for better conditions today and economic democracy tomorrow. By training our members in powerful organising methods, direct-action and direct-democracy, we put power in the hands of workers."
},
{
"title": "[Ruangrupa](https://ruangrupa.id) & [Lumbung.space](https://lumbung.space)",
"thumbnail": "",
"content": "is an experimental social and publishing platform by and for the lumbung artists and lumbung members initiated by Ruangrupa. It is a (digital) living room for our collective lumbung building process that allows us to connect, support each other, and also share knowledge collectively. It is built on open platforms, co-operative governance, and as a community infrastructure meant for our practices to develop and thrive."
},
{
"title": "[Threndol Tutoring](https://threndoltutoring.com/)",
"thumbnail": "",
"content": "offers gamified lessons to help students be effective in their studies. We work well with students who have obstacles such as ADHD, dyslexia, and confidence struggles; as well as students who are high achievers and looking to keep grades high or break into a higher symbol. Our unique style of tutoring where we build skills using games builds the students capacity to excel."
}
]

View File

@ -1,7 +1,7 @@
[
{
"left": "What is Co-op Cloud?",
"right": "Co-op Cloud is a software stack that aims to make hosting libre software applications simple for small service providers such as tech co-operatives who are looking to standardise around an open, transparent and scalable infrastructure. It uses the latest container technologies and configurations are shared into the commons for the benefit of all."
"right": "Public interest infrastructure. An alternative to corporate clouds built by tech co-ops. It uses the latest container technologies and configurations are shared into the commons for the benefit of all."
},
{
"left": "Is this a good long-term choice?",

View File

@ -2,6 +2,7 @@
<!-- {{ partial "index/video.html" . }} -->
{{ partial "index/underline_points.html" (dict "context" . "title" "benefits" "data" site.Data.benefits) }}
{{ partial "index/underline_points.html" (dict "context" . "title" "faq" "data" site.Data.faq) }}
{{ partial "index/case_studies.html" (dict "context" . "data" site.Data.case_studies) }}
{{ partial "index/autonomic_hero.html" (dict "context" . "data" site.Data) }}
<!-- {{ partial "index/open_collective.html" (dict "context" . "data" site.Data) }} -->
{{ partial "index/community_project.html" (dict "context" . "data" site.Data) }}

View File

@ -0,0 +1,31 @@
<section id="case_studies" class="section">
<div class="container content">
<h1 class="is-uppercase">Whos already using co-op cloud?</h1>
{{ range $index, $item := .data }}
<div class="columns is-centered my-6 is-vcentered">
{{ if eq (mod $index 2) 0 }}
<div class="column is-one-quarter">
<div class="image mx-4">
<img src="/img/wired.jpg" class="is-rounded">
</div>
</div>
<div class="column is-size-5 is-widescreen is-full-tablet is-half">
<h2 class="is-uppercase is-size-4 has-text-weight-medium">{{ $item.title | markdownify }}</h2>
<p>{{ $item.content | markdownify }}</p>
</div>
{{ else }}
<div class="column is-size-5 is-widescreen is-full-tablet is-half">
<h2 class="is-uppercase is-size-4 has-text-weight-medium">{{ $item.title | markdownify }}</h2>
<p>{{ $item.content | markdownify }}</p>
</div>
<div class="column is-one-quarter">
<div class="image mx-4">
<img src="/img/wired.jpg" class="is-rounded">
</div>
</div>
{{ end }}
</div>
{{ end }}
</div>
</section>

View File

@ -18,5 +18,12 @@
</div>
</div>
</div>
<div class="has-text-left">
<div class="column is-two-thirds">
<p class="subtitle is-size-3">
Co-op Cloud is a software stack that aims to make hosting <a href="https://www.gnu.org/philosophy/free-sw.html" target="_blank">libre software applications</a> simple for small service providers such as <a href="https://www.coops.tech/manifesto" target="_blank">tech co-operatives</a> who are looking to standardise around an open, transparent and scalable infrastructure. It uses the latest container technologies and configurations are shared into the commons for the benefit of all.
</p>
</div>
</div>
</div>
</section>