-
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.
Signed-off-by: Maciej Pijanowski <[email protected]>
- Loading branch information
Showing
9 changed files
with
56 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: ci | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
- mkdocs | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.x | ||
- run: pip install mkdocs-material | ||
- run: mkdocs gh-deploy --force |
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,2 @@ | ||
venv/ | ||
site/ |
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 |
---|---|---|
@@ -1,2 +1,11 @@ | ||
# vpub | ||
Dasharo Open Source Firmware vPub (aka 3mdeb vPub) - website, presentations and notes | ||
|
||
# Local build | ||
|
||
```bash | ||
$ virtualenv -p $(which python3) venv | ||
$ source venv/bin/activate | ||
$ pip install mkdocs mkdocs-material | ||
$ mkdocs build | ||
``` |
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 @@ | ||
vpub.dasharo.com |
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.
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,11 @@ | ||
:root { | ||
--md-primary-fg-color: #29363b; | ||
--md-primary-fg-color--light: #808080; | ||
--md-primary-fg-color--dark: #29363b; | ||
--md-accent-fg-color: hsla(117, 66%, 51%, 0.7); | ||
--md-text-font-family: "Oswald",sans-serif; | ||
} | ||
|
||
:root > * { | ||
--md-typeset-a-color: #38d430; | ||
} |
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,16 @@ | ||
site_name: Dasharo Open Source Firmware vPub (aka 3mdeb vPub) | ||
site_url: https://vpub.dasharo.com/ | ||
theme: | ||
name: material | ||
favicon: images/favicon.png | ||
logo: images/dasharo-logo.png | ||
extra_css: | ||
- stylesheets/extra.css | ||
google_analytics: | ||
- UA-39420295-13 | ||
- auto | ||
markdown_extensions: | ||
- pymdownx.highlight | ||
- pymdownx.superfences | ||
- pymdownx.keys | ||
- attr_list |