feat: add about page, style single page

This commit is contained in:
cellarspoon 2022-01-17 11:28:22 +01:00
parent f5ee96236b
commit 88a9bea8d2
No known key found for this signature in database
GPG Key ID: 03789458B3D0C410
5 changed files with 23 additions and 3 deletions

5
.gitignore vendored
View File

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

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>
<section class='entries'>
<div class="h-feed">
{{ range (.Paginator 13).Pages }}
{{ range where (.Paginator 13).Pages "Params.hidden" "ne" "true" }}
{{ if in .Params.categories "tv"}}

View File

@ -46,6 +46,7 @@
{{ end }}
{{ end }} */}}
<li><a href="/">home</a></li>
<li><a href="/about/">about</a></li>
<li><a href="/calendar/">calendar</a></li>
<li><a href="/video/">tv</a></li>
<li><a href="/hash/">socials</a></li>

View File

@ -119,6 +119,13 @@ body {
padding-top: 10%;
}
.p-name {
padding-right: 1em;
}
.e-content {
padding-left: 1em;
}
/* base header & menu */
@ -816,4 +823,4 @@ footer a:hover {
.card.shout h2 a {
font-size: 26px;
}
}
}