-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf9b809
commit 34390b7
Showing
19 changed files
with
266 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: galena-wiki | ||
|
||
services: | ||
app: | ||
image: squidfunk/mkdocs-material:latest | ||
volumes: | ||
- ../:/docs | ||
ports: | ||
- 8000:8000 | ||
entrypoint: ["sh", "docker/setup.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
cd /docs | ||
|
||
pip install -r requirements.txt | ||
|
||
mkdocs serve --dev-addr=0.0.0.0:8000 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
--- | ||
hide: | ||
- navigation | ||
- toc | ||
--- | ||
|
||
# Contributing to the Wiki | ||
|
||
Every page can be edited by modifing the content of it's respective markdown (`.md`) file. | ||
You are redirected to the github edit dialog by using the edit button visible on every page on the top-right. | ||
|
||
For contributers that are not within the organization, this means that you can create a [Fork](https://github.com/TeamGalena/Wiki/fork) and submit your changes/additions using a Pull-Request. | ||
|
||
Pages are located withing the `docs` directory and resolve to the following routes: | ||
|
||
``` | ||
docs/index.md -> / (the home page) | ||
docs/something.md -> /something/ | ||
docs/something/index.md -> /something/ | ||
docs/something/else.md -> /something/else/ | ||
docs/something/even/elser.md -> /something/even/elser/ | ||
``` | ||
|
||
## Useful snippets | ||
|
||
### Links | ||
|
||
Links can be created by using the syntax `[link text](link url)` | ||
|
||
- [Link to GitHub](https://github.com) | ||
- [Link a different Page](../members.md) | ||
- [Link with a tooltip](../index.md "Wow you hovered me!") | ||
|
||
``` | ||
- [Link to GitHub](https://github.com) | ||
- [Link a different Page](../members.md) | ||
- [Link with a tooltip](../index.md "Wow you hovered me!") | ||
``` | ||
|
||
### Images | ||
|
||
Images can be embedded simlar to links, just by prefixing them with a `!` | ||
|
||
<div class="grid cards" markdown> | ||
|
||
- | ||
``` | ||
![](/assets/icon.png) | ||
``` | ||
|
||
![](/assets/icon.png){ width=100 align=right } | ||
|
||
I am a simple image | ||
|
||
- | ||
``` | ||
![](/assets/icon.png){ .on-glb } | ||
``` | ||
|
||
![](/assets/icon.png){ .on-glb width=100 align=right } | ||
|
||
You can open me up | ||
|
||
- | ||
``` | ||
![](/assets/icon.png){ .inline-icon } | ||
``` | ||
|
||
I am an inline icon ![](/assets/icon.png){ .inline-icon } within some text | ||
|
||
</div> | ||
|
||
Icons of blocks & items can be embedded using the following syntax. | ||
|
||
<div class="grid" style="grid-template-columns: 100px 1fr; align-items: center" markdown> | ||
|
||
|
||
![]({{ hosts.icons }}/minecraft/obsidian.png) | ||
|
||
``` | ||
![]({{ hosts.icons }}/minecraft/obsidian.png) | ||
``` | ||
|
||
![]({{ hosts.icons }}/oreganized/goopy_lead_block.png) | ||
|
||
``` | ||
![]({{ hosts.icons }}/oreganized/goopy_lead_block.png) | ||
``` | ||
|
||
![]({{ hosts.icons }}/windswept/chestnuts.png) | ||
|
||
``` | ||
![]({{ hosts.icons }}/windswept/chestnuts.png) | ||
``` | ||
|
||
</div> | ||
|
||
[:octicons-search-16: Browse available icons](https://icons.macarena.ceo/browse){ .md-button target="_blank" } | ||
|
||
### Admonitions | ||
|
||
Admonitions can be created with several types, specific by in the example below by the work `info`. | ||
You can read about all of them [here](https://squidfunk.github.io/mkdocs-material/reference/admonitions/#supported-types). | ||
|
||
|
||
!!! info "Example admonitions" | ||
Here is some content for your admonitions, although this is optional. | ||
|
||
|
||
``` | ||
!!! info "Example admonitions" | ||
Here is some content for your admonitions, although this is optional. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
--- | ||
hide: | ||
- navigation | ||
- toc | ||
--- | ||
|
||
# Members | ||
|
||
<div class="grid cards hotbar" markdown> | ||
|
||
- @Binome | ||
|
||
--- | ||
|
||
![](/assets/avatars/binome.jpg){ .avatar } | ||
|
||
In id do reprehenderit consectetur minim excepteur voluptate officia adipisicing veniam dolore esse aliqua. | ||
|
||
--- | ||
|
||
_Artist_{ .chip } | ||
|
||
- @Rose | ||
|
||
--- | ||
|
||
![](/assets/avatars/rose.png){ .avatar } | ||
|
||
Aliqua non exercitation labore qui incididunt consequat pariatur. | ||
|
||
--- | ||
|
||
_Developer_{ .chip } | ||
|
||
- @Xaidee | ||
|
||
--- | ||
|
||
![](/assets/avatars/xaidee.png){ .avatar } | ||
|
||
Tempor occaecat id fugiat duis est laboris labore adipisicing sit consequat fugiat non. | ||
|
||
--- | ||
|
||
_Developer_{ .chip } | ||
|
||
- @Yapetto | ||
|
||
--- | ||
|
||
![](/assets/avatars/yape.png){ .avatar } | ||
|
||
Consectetur commodo sit aute ex ipsum velit culpa consequat fugiat. | ||
|
||
--- | ||
|
||
_Artist_{ .chip } | ||
|
||
<!-- md:extension [attr_list][Attribute Lists] --> | ||
|
||
|
||
- @Orcinus | ||
|
||
--- | ||
|
||
![](/assets/avatars/orcinus.png){ .avatar } | ||
|
||
Culpa laboris magna tempor quis eiusmod qui sit laboris aute elit quis. | ||
|
||
--- | ||
|
||
_Developer_{ .chip } | ||
|
||
|
||
- @PssbleTrngle | ||
|
||
--- | ||
|
||
![](/assets/avatars/possible_triangle.png){ .avatar } | ||
|
||
Duis anim nulla incididunt cillum nostrud. | ||
|
||
--- | ||
|
||
_Developer_{ .chip } | ||
|
||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters