5 Commits

Author SHA1 Message Date
3wc
cf19f47c36 fix: Correct ordering of lasuite app explanations
All checks were successful
continuous-integration/drone/push Build is passing
2026-03-25 15:23:15 -04:00
3wc
fb3c98a72f fix: <ul> same font size / weight as <p>
All checks were successful
continuous-integration/drone/push Build is passing
Closes #56
2026-03-25 15:19:16 -04:00
3wc
41b8df07aa fix: Improve link styling:
All checks were successful
continuous-integration/drone/push Build is passing
- `a > code` is now link-coloured
- links are $coopcloud-blue instead of bulma default

Closes #58
2026-03-25 15:17:56 -04:00
3wc
e84a55d1c5 If only I knew what year it was... (+ add @val)
All checks were successful
continuous-integration/drone/push Build is passing
2026-03-25 14:01:15 -04:00
3wc
7cef320894 Merge remote-tracking branch 'origin/val-patch-1'
All checks were successful
continuous-integration/drone/push Build is passing
2026-03-25 13:52:06 -04:00
2 changed files with 13 additions and 3 deletions

View File

@ -5,6 +5,8 @@ draft: false
image: "/img/floral-compaq.jpg" image: "/img/floral-compaq.jpg"
imageCredit: "Image from the Outdoor Computing Club collection by Fletcher Bach (are.na/block/32107276)" imageCredit: "Image from the Outdoor Computing Club collection by Fletcher Bach (are.na/block/32107276)"
description: "March 2026 community update" description: "March 2026 community update"
aliases:
- /blog/march-2025-equinox/
--- ---
Celebrating the mid-point between solar solstices with 2000+ words of updates on the (many) happenings in our corner of radical technology co-operativism. Celebrating the mid-point between solar solstices with 2000+ words of updates on the (many) happenings in our corner of radical technology co-operativism.
@ -143,7 +145,7 @@ OK, back to the new recipes. Here we goooooooooo :point_down:
- [`affine`](https://git.coopcloud.tech/coop-cloud/affine), a privacy-focused, local-first, open-source, and ready-to-use alternative for Notion & Miro, by `@val` - [`affine`](https://git.coopcloud.tech/coop-cloud/affine), a privacy-focused, local-first, open-source, and ready-to-use alternative for Notion & Miro, by `@val`
- [`cobalt`](https://git.coopcloud.tech/coop-cloud/cobalt), a media management tool, by `@marlon` - [`cobalt`](https://git.coopcloud.tech/coop-cloud/cobalt), a media management tool, by `@marlon`
- [`searxng`](https://git.coopcloud.tech/coop-cloud/searxng), a metasearch engine, by `@marlon` - [`searxng`](https://git.coopcloud.tech/coop-cloud/searxng), a metasearch engine, by `@marlon`
- [`lasuite-people`](https://git.coopcloud.tech/coop-cloud/lasuite-people), [`lasuite-drive`](https://git.coopcloud.tech/coop-cloud/lasuite-drive) and [`lasuite-meet`](https://git.coopcloud.tech/coop-cloud/lasuite-meet), the "La Suite Numerique" file-sharing, user management, and meeting systems, by `@notplants` - [`lasuite-people`](https://git.coopcloud.tech/coop-cloud/lasuite-people), [`lasuite-drive`](https://git.coopcloud.tech/coop-cloud/lasuite-drive) and [`lasuite-meet`](https://git.coopcloud.tech/coop-cloud/lasuite-meet), the "La Suite Numerique" user management, file-sharing, and meeting systems, by `@notplants`
- [`tellaweb`](https://git.coopcloud.tech/coop-cloud/tellaweb), a self-hosted platform for collecting reports of human rights abuses and ecological destruction from the [Tella](https://tella-app.org) app, by `@3wc` - [`tellaweb`](https://git.coopcloud.tech/coop-cloud/tellaweb), a self-hosted platform for collecting reports of human rights abuses and ecological destruction from the [Tella](https://tella-app.org) app, by `@3wc`
- [`kiwix`](https://git.coopcloud.tech/coop-cloud/kiwix), an offline access server for wikipedia, ifixit, project gutenburg and other reference sites, by `@Jade` - [`kiwix`](https://git.coopcloud.tech/coop-cloud/kiwix), an offline access server for wikipedia, ifixit, project gutenburg and other reference sites, by `@Jade`
- [`mila`](https://git.coopcloud.tech/coop-cloud/mila), a simple, self-hostable membership management for small to mid-sized organizations, by [Local-IT](https://local-it.org/). - [`mila`](https://git.coopcloud.tech/coop-cloud/mila), a simple, self-hostable membership management for small to mid-sized organizations, by [Local-IT](https://local-it.org/).
@ -199,4 +201,4 @@ If youre thinking about setting up a technology co-op, you have a software st
If youre curious but dont know where to start, [get in touch](https://docs.coopcloud.tech/intro/contact/) anyway! If youre curious but dont know where to start, [get in touch](https://docs.coopcloud.tech/intro/contact/) anyway!
`@3wc`, `@d1`, `@linnealovespie` `@Simon`, `@stevensting`, `@wtebbens` and others `@3wc`, `@d1`, `@linnealovespie` `@Simon`, `@stevensting`, `@val`, `@wtebbens` and others

View File

@ -263,10 +263,18 @@ footer .separator {
.content { .content {
h3 { text-transform: uppercase; } h3 { text-transform: uppercase; }
p { p, ul {
font-size: 1.2rem; font-size: 1.2rem;
font-weight: 100; font-weight: 100;
} }
a, a:visited {
color: $coopcloud-blue;
}
a code {
color: $coopcloud-blue;
}
} }
.post-metadata { .post-metadata {