Merge.
This commit is contained in:
@@ -1,8 +0,0 @@
|
||||
{
|
||||
"permissions": {
|
||||
"allow": [
|
||||
"Bash(hugo:*)"
|
||||
],
|
||||
"deny": []
|
||||
}
|
||||
}
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -7,3 +7,5 @@
|
||||
/.hugo_build.lock
|
||||
static/apt
|
||||
.working
|
||||
# settings.local.json
|
||||
.amplified
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
|
||||
33
layouts/partials/series/series_base.html
Normal file
33
layouts/partials/series/series_base.html
Normal file
@@ -0,0 +1,33 @@
|
||||
{{ if .Params.series }}
|
||||
<summary
|
||||
class="py-1 text-lg font-semibold cursor-pointer bg-primary-200 text-neutral-800 ltr:-ml-5 ltr:pl-5 rtl:-mr-5 rtl:pr-5 dark:bg-primary-800 dark:text-neutral-100">
|
||||
{{ index .Params.series 0 }} -
|
||||
{{ i18n "article.part_of_series" }}
|
||||
</summary>
|
||||
{{ $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 }}
|
||||
<div
|
||||
class="py-1 border-dotted border-neutral-300 ltr:-ml-5 ltr:border-l ltr:pl-5 rtl:-mr-5 rtl:border-r rtl:pr-5 dark:border-neutral-600">
|
||||
{{ i18n "article.part" }} {{ $post.Params.series_order }}:
|
||||
{{ i18n "article.this_article" }}
|
||||
</div>
|
||||
{{ else }}
|
||||
<div
|
||||
class="py-1 border-dotted border-neutral-300 ltr:-ml-5 ltr:border-l ltr:pl-5 rtl:-mr-5 rtl:border-r rtl:pr-5 dark:border-neutral-600">
|
||||
<a href="{{ $post.RelPermalink }}">
|
||||
{{ i18n "article.part" }} {{ $post.Params.series_order }}:
|
||||
{{ $post.Params.title }}
|
||||
</a>
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user