diff --git a/.claude/settings.local.json b/.claude/settings.local.json deleted file mode 100644 index f4a5874..0000000 --- a/.claude/settings.local.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "permissions": { - "allow": [ - "Bash(hugo:*)" - ], - "deny": [] - } -} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 152eb17..9d212b1 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,5 @@ /.hugo_build.lock static/apt .working +# settings.local.json +.amplified diff --git a/content/contribute/index.md b/content/contribute/index.md index 7c85049..1268bd2 100644 --- a/content/contribute/index.md +++ b/content/contribute/index.md @@ -6,13 +6,17 @@ draft = false Wild Cloud is a community-driven, open source project. +## Ask + +Want to get in touch with the founder and developer of Wild Cloud v1? Email paul@payne.io. + ## Discuss The [Civil Society Technology Foundation (CSTF)](https://civilsociety.dev) provides a [forum for Wild Cloud community discussion](https://forum.civilsociety.dev/c/wild-cloud/). All are welcome! It's kinda quiet there right now, but hey, if you post now you'll always be remembered as a founding contributor! ## Hack -If you're ready to jump into development, join our project at https://git.civilsociety.dev/wild-cloud. We accept community pull requests related to any of these issues. +If you're ready to jump into development, join our project at https://git.civilsociety.dev/wild-cloud. In addition to source code, you'll find a list of our current [issues](https://git.civilsociety.dev/wild-cloud/issues). We accept community pull requests related to any of these issues. ## Propose diff --git a/content/learning/git/index.md b/content/learning/git/index.md index 5a96e0e..3e946b5 100644 --- a/content/learning/git/index.md +++ b/content/learning/git/index.md @@ -5,11 +5,7 @@ featureImageCaption: Author unknown. (https://commons.wikimedia.org/wiki/File:Li summary: "Git is more than just a version control system; it embodies principles of decentralization, resilience, and user self-determination. This article explores how Git's distributed architecture aligns with the values of civil society organizations, enabling them to maintain control over their digital infrastructure." --- -Got it — here’s a **Wild Cloud house-style educational article** on **Git**. - ---- - -# Git: The Version Control Superpower +## Git: The Version Control Superpower Most of us have, at some point, saved a file as `project.doc`, then later as `project-final.doc`, then finally as `project-final-final2.doc`. 😅 That mess is what Git was created to solve. Git is a **version control system**—a tool that lets you track every change to your files, collaborate safely with others, and rewind history if something goes wrong. diff --git a/layouts/partials/series/series_base.html b/layouts/partials/series/series_base.html new file mode 100644 index 0000000..d9dc5cd --- /dev/null +++ b/layouts/partials/series/series_base.html @@ -0,0 +1,33 @@ +{{ if .Params.series }} + + {{ index .Params.series 0 }} - + {{ i18n "article.part_of_series" }} + + {{ $seriesName := index .Params.series 0 }} + {{ $allPages := .Site.AllPages }} + {{ $seriesPages := slice }} + {{ range $allPages }} + {{ if and .Params.series (eq (index .Params.series 0) $seriesName) (isset .Params "series_order") }} + {{ $seriesPages = $seriesPages | append . }} + {{ end }} + {{ end }} + {{ $sortedPages := sort $seriesPages "Params.series_order" }} + {{ range $post := $sortedPages }} + {{ if eq $post.Permalink $.Page.Permalink }} +
+ {{ i18n "article.part" }} {{ $post.Params.series_order }}: + {{ i18n "article.this_article" }} +
+ {{ else }} +
+ + {{ i18n "article.part" }} {{ $post.Params.series_order }}: + {{ $post.Params.title }} + +
+ {{ end }} + {{ end }} +{{ end }} \ No newline at end of file