Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolf65 committed Feb 18, 2024
1 parent 35c0b99 commit 2ba5606
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: ci
on:
push:
branches:
- master
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- run: pip install mkdocs-material
- run: pip install pillow cairosvg
- run: mkdocs gh-deploy --force
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Name=FBRebornKlipper

.PHONY: all
all: run

.PHONY: run
run:
clear
mkdocs serve
1 change: 1 addition & 0 deletions docs/Reborn 1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Reborn
3 changes: 3 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Welcome to MkDocs

В процессе наполнения
47 changes: 47 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
site_name: Flying Bear Klipper
site_url: https://Wolf65.github.io/FBRebornKlipper/

theme:
name: material
features:
- navigation.tabs
- navigation.sections
- toc.integrate
- navigation.top
- search.suggest
- search.highlight
- content.tabs.link
# - content.code.annotation
- content.code.copy
language: ru
palette:
scheme: slate
primary: teal
accent: purple

extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/Wolf65/FBRebornKlipper
- icon: fontawesome/brands/telegram
link: https://t.me/IronWolf65

markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.details
- pymdownx.superfences
- pymdownx.mark
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg

copyright: |
&copy; 2024 <a href="https://github.com/Wolf65/FBRebornKlipper" target="_blank" rel="noopener">Iron Wolf</a>

0 comments on commit 2ba5606

Please sign in to comment.