Compare commits

4 Commits

Author SHA1 Message Date
88a9bea8d2 feat: add about page, style single page
All checks were successful
continuous-integration/drone Build is passing
2022-01-17 11:28:22 +01:00
f5ee96236b fix: logo link works 2022-01-17 11:09:40 +01:00
128493bfdc Merge branch 'main' of ssh://git.autonomic.zone:2222/ruangrupa/lumbung.space into main 2022-01-17 11:02:42 +01:00
f35c2d08c3 fix urls 2022-01-13 17:23:44 +01:00
6 changed files with 25 additions and 5 deletions

5
.gitignore vendored
View File

@ -1,6 +1,9 @@
*.lock *.lock
.env .env
.venv/ .venv/
/content /content/calendar/
/content/feed/
/content/hash/
/content/video/
/public/ /public/
resources resources

View File

@ -28,7 +28,7 @@ services:
order: start-first order: start-first
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"
- "traefik.http.routers.coop-cloud-site.rule=Host(`lumbung.space,beta.lumbung.space`)" - "traefik.http.routers.coop-cloud-site.rule=Host(`lumbung.space`,`beta.lumbung.space`)"
- "traefik.http.routers.coop-cloud-site.entrypoints=web-secure" - "traefik.http.routers.coop-cloud-site.entrypoints=web-secure"
- "traefik.http.services.coop-cloud-site.loadbalancer.server.port=1313" - "traefik.http.services.coop-cloud-site.loadbalancer.server.port=1313"
- "traefik.http.routers.coop-cloud-site.tls.certresolver=production" - "traefik.http.routers.coop-cloud-site.tls.certresolver=production"

9
content/about.md Normal file
View File

@ -0,0 +1,9 @@
---
title: "About"
date: 2022-01-17T11:11:58+01:00
hidden: true
---
lumbung.space is an experimental social and publishing platform by and for the lumbung artists and lumbung members. 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, cooperative governance, and as a community infrastructure meant for our practices to develop and thrive. As a project, lumbung.space is an experiment for artist-initiated digital platforms and part of the process towards documenta fifteen. After documenta—the strive is for lumbung.space to be sustained as a shared resources for the lumbung inter-lokal. 
lumbung.space is a space for learning: currently, the working group is trying to find out what a social platform for a lumbung practice looks like; as we recognize that we don't want our practices to be subject to, or dependent upon extractive, exploitative digital infrastructures. Making lumbung.space to be a platform that is owned and operated by the community of users themselves: which means us! (and not a service that is run by a corporation). We are working with [Autonomic Co-operative](https://autonomic.zone) who is part of the [Co-op Cloud](https://coopcloud.tech) initiative where our learnings feedback into, allowing other collectives to set up similar infrastructures.

View File

@ -2,7 +2,7 @@
<main> <main>
<section class='entries'> <section class='entries'>
<div class="h-feed"> <div class="h-feed">
{{ range (.Paginator 13).Pages }} {{ range where (.Paginator 13).Pages "Params.hidden" "ne" "true" }}
{{ if in .Params.categories "tv"}} {{ if in .Params.categories "tv"}}

View File

@ -12,7 +12,7 @@
<a href="https://members.lumbung.space" id="login">login</a> <a href="https://members.lumbung.space" id="login">login</a>
</div> </div>
<a href="{{ .Site.Params.baseURL }}" class="home-link"> <a href="/" class="home-link">
<img class="logo" src="{{ .Site.Params.Logo }}" alt="{{ .Site.Title }}"> <img class="logo" src="{{ .Site.Params.Logo }}" alt="{{ .Site.Title }}">
</a> </a>
@ -46,6 +46,7 @@
{{ end }} {{ end }}
{{ end }} */}} {{ end }} */}}
<li><a href="/">home</a></li> <li><a href="/">home</a></li>
<li><a href="/about/">about</a></li>
<li><a href="/calendar/">calendar</a></li> <li><a href="/calendar/">calendar</a></li>
<li><a href="/video/">tv</a></li> <li><a href="/video/">tv</a></li>
<li><a href="/hash/">socials</a></li> <li><a href="/hash/">socials</a></li>

View File

@ -119,6 +119,13 @@ body {
padding-top: 10%; padding-top: 10%;
} }
.p-name {
padding-right: 1em;
}
.e-content {
padding-left: 1em;
}
/* base header & menu */ /* base header & menu */