-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit a6f6e3d
Showing
6 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
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,29 @@ | ||
name: ci | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
permissions: | ||
contents: write | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Configure Git Credentials | ||
run: | | ||
git config user.name github-actions[bot] | ||
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV | ||
- uses: actions/cache@v4 | ||
with: | ||
key: mkdocs-material-${{ env.cache_id }} | ||
path: .cache | ||
restore-keys: | | ||
mkdocs-material- | ||
- 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 @@ | ||
.venv |
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 @@ | ||
# Blog | ||
|
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,31 @@ | ||
--- | ||
draft: true | ||
date: 2022-01-31 | ||
categories: | ||
- Hello | ||
- World | ||
--- | ||
|
||
# Hello world! | ||
|
||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque nec | ||
maximus ex. Sed consequat, nulla quis malesuada dapibus, elit metus vehicula | ||
erat, ut egestas tellus eros at risus. In hac habitasse platea dictumst. | ||
Phasellus id lacus pulvinar erat consequat pretium. Morbi malesuada arcu mauris | ||
Nam vel justo sem. Nam placerat purus non varius luctus. Integer pretium leo in | ||
sem rhoncus, quis gravida orci mollis. Proin id aliquam est. Vivamus in nunc ac | ||
metus tristique pellentesque. Suspendisse viverra urna in accumsan aliquet. | ||
|
||
<!-- more --> | ||
|
||
Donec volutpat, elit ac volutpat laoreet, turpis dolor semper nibh, et dictum | ||
massa ex pulvinar elit. Curabitur commodo sit amet dolor sed mattis. Etiam | ||
tempor odio eu nisi gravida cursus. Maecenas ante enim, fermentum sit amet | ||
molestie nec, mollis ac libero. Vivamus sagittis suscipit eros ut luctus. | ||
|
||
Nunc vehicula sagittis condimentum. Cras facilisis bibendum lorem et feugiat. | ||
In auctor accumsan ligula, at consectetur erat commodo quis. Morbi ac nunc | ||
pharetra, pellentesque risus in, consectetur urna. Nulla id enim facilisis | ||
arcu tincidunt pulvinar. Vestibulum laoreet risus scelerisque porta congue. | ||
In velit purus, dictum quis neque nec, molestie viverra risus. Nam pellentesque | ||
tellus id elit ultricies, vel finibus erat cursus. |
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,8 @@ | ||
site_name: My Blog | ||
theme: | ||
name: material | ||
plugins: | ||
- blog: | ||
blog_dir: . | ||
- search | ||
- tags |