diff --git a/.gitignore b/.gitignore index bb9821c..d4afe78 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,9 @@ *.lock .env .venv/ -/content +/content/calendar/ +/content/feed/ +/content/hash/ +/content/video/ /public/ resources diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..71d9164 --- /dev/null +++ b/content/about.md @@ -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. diff --git a/themes/lumbung-theme/layouts/index.html b/themes/lumbung-theme/layouts/index.html index 1ec194c..27d17f2 100644 --- a/themes/lumbung-theme/layouts/index.html +++ b/themes/lumbung-theme/layouts/index.html @@ -2,7 +2,7 @@
- {{ range (.Paginator 13).Pages }} + {{ range where (.Paginator 13).Pages "Params.hidden" "ne" "true" }} {{ if in .Params.categories "tv"}} diff --git a/themes/lumbung-theme/layouts/partials/header.html b/themes/lumbung-theme/layouts/partials/header.html index f9e9e99..337d08f 100644 --- a/themes/lumbung-theme/layouts/partials/header.html +++ b/themes/lumbung-theme/layouts/partials/header.html @@ -46,6 +46,7 @@ {{ end }} {{ end }} */}}
  • home
  • +
  • about
  • calendar
  • tv
  • socials
  • diff --git a/themes/lumbung-theme/static/css/main.css b/themes/lumbung-theme/static/css/main.css index 66cc065..7eba0a0 100644 --- a/themes/lumbung-theme/static/css/main.css +++ b/themes/lumbung-theme/static/css/main.css @@ -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; } -} \ No newline at end of file +}