Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
micouy committed Nov 30, 2024
0 parents commit 6019c58
Show file tree
Hide file tree
Showing 10 changed files with 693 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build_and_deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on: push
name: Build and deploy GH Pages
jobs:
build:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: checkout
uses: actions/checkout@v4
- name: build_and_deploy
uses: shalzz/zola-deploy-action@master
env:
# Target branch
PAGES_BRANCH: gh-pages
# Or if publishing to the same repo, use the automatic token
TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
public/
17 changes: 17 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# The URL the site will be built for
base_url = "https://micouy.github.io"

# Whether to automatically compile all Sass files in the sass directory
compile_sass = false

# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false

[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
highlight_theme = "ir-white"

[extra]
# Put all your custom variables here
6 changes: 6 additions & 0 deletions content/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
+++
title = "micouy's blog"
sort_by = "date"
template = "blog.html"
page_template = "blog-page.html"
+++
Loading

0 comments on commit 6019c58

Please sign in to comment.