-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
11 changed files
with
83 additions
and
13 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 was deleted.
Oops, something went wrong.
Empty file.
Empty file.
Empty file.
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,17 @@ | ||
# Welcome to MkDocs | ||
|
||
For full documentation visit [mkdocs.org](https://www.mkdocs.org). | ||
|
||
## Commands | ||
|
||
* `mkdocs new [dir-name]` - Create a new project. | ||
* `mkdocs serve` - Start the live-reloading docs server. | ||
* `mkdocs build` - Build the documentation site. | ||
* `mkdocs -h` - Print help message and exit. | ||
|
||
## Project layout | ||
|
||
mkdocs.yml # The configuration file. | ||
docs/ | ||
index.md # The documentation homepage. | ||
... # Other markdown pages, images and other files. |
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 @@ | ||
--- | ||
tags: | ||
- on-premise | ||
- tech preview | ||
--- |
Empty file.
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,4 @@ | ||
mkdocs | ||
mkdocs-material | ||
mike | ||
mkdocs-git-revision-date-plugin |
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,43 @@ | ||
site_name: Galaxy NG - Upstream for Ansible Automation Hub | ||
site_url: "https://ansible.github.io/galaxy_ng" | ||
repo_name: ansible/galaxy_ng | ||
repo_url: "https://github.com/ansible/galaxy_ng" | ||
edit_uri: edit/master/docs/ | ||
nav: | ||
- Home: index.md | ||
- Install: installation.md | ||
- Configuration: configuration.md | ||
- Content Signing: content_signing.md | ||
- Development: development.md | ||
- Tags: tags.md | ||
theme: | ||
features: | ||
- search.suggest | ||
- search.highlight | ||
- search.share | ||
name: material | ||
palette: | ||
- scheme: default | ||
media: "(prefers-color-scheme: light)" | ||
primary: teal | ||
toggle: | ||
icon: material/toggle-switch-off-outline | ||
name: Switch to dark mode | ||
- scheme: slate | ||
media: "(prefers-color-scheme: dark)" | ||
primary: teal | ||
toggle: | ||
icon: material/toggle-switch | ||
name: Switch to light mode | ||
extra: | ||
version: | ||
provider: mike | ||
default: latest | ||
|
||
plugins: | ||
- git-revision-date | ||
- tags: | ||
tags_file: tags.md | ||
- search: | ||
lang: en | ||
prebuild_index: true |