diff --git a/.readme/assets/img/edit-button.png b/.readme/assets/img/edit-button.png new file mode 100644 index 0000000..566efd7 Binary files /dev/null and b/.readme/assets/img/edit-button.png differ diff --git a/README.md b/README.md index 7d1e38c..5cab187 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,24 @@ Based on [Hugo](https://gohugo.io/)'s astonishingly fast [Static Site Generation You can visit the website [here](https://wiki.lunivity.com). +## Contributing + +You're welcome to contribute to this wiki, as long as you agree to publish your work under the [CC BY-NC-SA 4.0](./LICENSE). + +If you agree to these terms, you can click on the edit button in the table of contents on the right of a page to edit a page online: + +![Edit Button Screenshot](./.readme/assets/img/edit-button.png) + +Or you can clone the repo and edit manually. You'll need `hugo` and `go` installed if you want to view the page locally or build it: + +```bash +# clone the repo +$ git clone git@gitpot.dev:lunivity/wiki.git lunivity-wiki + +# launch preview web server +$ hugo server --disableFastRender --noHTTPCache +``` + ## License This wiki is licensed under the [CC BY-NC-SA 4.0](./LICENSE). You can read up on what's allowed and what's not [here](https://wiki.lunivity.com/license/). diff --git a/wiki/assets/css/footer.css b/wiki/assets/css/footer.css deleted file mode 100644 index 79bd732..0000000 --- a/wiki/assets/css/footer.css +++ /dev/null @@ -1,53 +0,0 @@ -footer { - display: flex; - align-items: center; - flex-wrap: wrap; - /* justify-content: center; */ -} - -.footer-seperator, -.footer-legal-seperator { - margin: 0 0.5em 0 0.5em; -} - -.footer-powered-by { - margin-left: auto; - padding-left: 1em; - margin-right: 1em; -} - -.footer-cc-license-banner { - height: 2em; -} - -.footer-cc-license-banner > img { - height: 32px; - min-width: 96px; - border-radius: 6px; -} - -@media screen and (max-width: 1100px) { - .footer-home, - .footer-seperator, - .footer-dash { - display: none; - visibility: hidden; - } - - .footer-legal-seperator { - /* display: inline-flex; */ - visibility: visible; - /* margin-left: 0.75em; */ - } -} - -@media screen and (max-width: 800px) { - .footer-legal { - margin-right: 1em; - } - - .footer-powered-by { - margin-left: 0; - padding: 0; - } -}