Barging through some last minute changes
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2021-03-31 08:12:28 +02:00
parent 6fbe757a49
commit 9f887d41c7
No known key found for this signature in database
GPG Key ID: 92DAD76BD9567B8A
6 changed files with 53 additions and 44 deletions

View File

@ -27,5 +27,5 @@ theme = "cloud.autonomic.zone"
name = "Documentation"
link = "https://docs.cloud.autonomic.zone"
[[params.links.footer]]
name = "Matrix"
name = "Public Matrix chat"
link = "https://matrix.to/#/#coopcloud:autonomic.zone?via=autonomic.zone"

View File

@ -1,11 +1,11 @@
[
{
"left": "Collaborative",
"right": "Open development process, centred on libre software licenses, community governance and a configuration commons."
"right": "Democratic development process, centred on [libre software licenses](https://www.gnu.org/philosophy/free-sw.html), community governance and a configuration commons."
},
{
"left": "simple",
"right": "Quick, flexible, and intuitive with low resource requirements, minimal overhead, and extensive documentation."
"right": "Quick, flexible, and intuitive with low resource requirements, minimal overhead, and [extensive documentation](https://docs.cloud.autonomic.zone/)."
},
{
"left": "private",

View File

@ -5,11 +5,11 @@
},
{
"left": "Is this a good long-term choice?",
"right": "Co-op Cloud re-uses upstream libre software project packaging efforts so that we can meet projects where they are at and reduce duplication of effort. The project proposes the notion of more direct coordination between distribution methods (app packagers) and production methods (developers)."
"right": "Co-op Cloud re-uses upstream libre software project packaging efforts (containers) so that we can meet projects where they are at and reduce duplication of effort. The project proposes the notion of more direct coordination between distribution methods (app packagers) and production methods (app developers)."
},
{
"left": "What libre apps are available?",
"right": "Applications that you may already use in your daily life: Nextcloud, Jitsi, Mediawiki, Rocket.chat and many more! These are tools that are created by volunteer communities who use free software licenses in order to build up the public software commons and offer more digital alternatives. Co-op Cloud allows you to easily deploy and maintain these apps."
"right": "Co-op Cloud helps deploy and maintain applications that you may already use in your daily life: Nextcloud, Jitsi, Mediawiki, Rocket.chat and many more! These are tools that are created by volunteer communities who use [libre software licenses](https://www.gnu.org/philosophy/free-sw.html) in order to build up the public software commons and offer more digital alternatives."
},
{
"left": "What about other alternatives?",

View File

@ -1,12 +1,9 @@
{{ define "main" }}
{{ partial "index/server_hero.html" . }}
{{ 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/autonomic_hero.html" (dict "context" . "data" site.Data) }}
{{ define "main" }} {{ partial "index/server_hero.html" . }}
<!-- {{ 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/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) }}
{{ end }}

View File

@ -4,7 +4,10 @@
<div class="columns is-centered">
<div class="column is-three-quarters-desktop is-two-thirds-tablet">
<p class="title is-size-2">
Public infrastructure-as-a-service.
<a href="https://public-interest-tech.com/" target="_blank"
>Public interest</a
>
infrastructure
</p>
<p class="subtitle is-size-2">
An alternative to corporate clouds built by
@ -19,7 +22,7 @@
<p class="is-size-3"><b>Learn More</b></p>
<!-- SVG provided by LineIcons https://lineicons.com under CC BY-SA 4.0 -->
<!-- Colour has been changed and this SVG is also licensed under CC BY-SA 4.0 as per its license requirements -->
<a href="#video-section"
<a href="#benefits-section"
><img alt="Down Chevron" width="40px" src="/svg/chevron-down.svg"
/></a>
</div>

View File

@ -1,33 +1,42 @@
<section id="{{ .title }}" class="section">
<section id="benefits-section" class="section">
<div class="container content">
<h1 class="is-uppercase">{{ .title }}</h1>
<hr class="hr-header">
{{ $title := lower .title }}
{{ $amount := len .data }}
{{ range $index, $item := .data }}
{{/* Don't place <hr> if it is the first in the list */}}
{{ if gt $index 0 }}<hr>{{ end }}
<div class="columns is-variable is-8">
<div class="column is-4-tablet is-one-third-desktop is-one-quarter-widescreen">
{{ if eq $title "benefits" }}
<h2 class="is-uppercase is-size-3 has-text-weight-medium">{{ $item.left }}</h2>
{{ else }}
<h2 class="is-uppercase is-size-4 has-text-weight-medium">{{ $item.left }}</h2>
{{ end }}
</div>
<div class="column is-two-thirds-desktop is-three-fifths-widescreen">
<div class="is-size-4">
<p class="block has-text-weight-light">{{ markdownify $item.right }}</p>
</div>
{{ if and (eq $amount (add $index 1)) (eq $title "faq") }}
<a href="{{ site.Params.links.docsfaq }}">
<button id="faq-button" class="button grey-button is-medium">
Read all Frequently Asked Questions
</button>
</a>
{{ end }}
</div>
<hr class="hr-header" />
{{ $title := lower .title }} {{ $amount := len .data }} {{ range $index,
$item := .data }} {{/* Don't place
<hr />
if it is the first in the list */}} {{ if gt $index 0 }}
<hr />
{{ end }}
<div class="columns is-variable is-8">
<div
class="column is-4-tablet is-one-third-desktop is-one-quarter-widescreen"
>
{{ if eq $title "benefits" }}
<h2 class="is-uppercase is-size-3 has-text-weight-medium">
{{ $item.left }}
</h2>
{{ else }}
<h2 class="is-uppercase is-size-4 has-text-weight-medium">
{{ $item.left }}
</h2>
{{ end }}
</div>
<div class="column is-two-thirds-desktop is-three-fifths-widescreen">
<div class="is-size-4">
<p class="block has-text-weight-light">
{{ markdownify $item.right }}
</p>
</div>
{{ if and (eq $amount (add $index 1)) (eq $title "faq") }}
<a href="{{ site.Params.links.docsfaq }}">
<button id="faq-button" class="button grey-button is-medium">
Read all Frequently Asked Questions
</button>
</a>
{{ end }}
</div>
</div>
{{ end }}
</div>
</section>
</section>