Skip to content

Commit

Permalink
initial zola commit
Browse files Browse the repository at this point in the history
  • Loading branch information
updraft0 committed Apr 18, 2024
1 parent 8d8fb09 commit abe68b3
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Pages
on:
push:
branches:
- gh-pages
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Build and deploy
uses: shalzz/[email protected]
env:
BUILD_DIR: docs
PAGES_BRANCH: gh-pages
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Simple Build Tool
target/
/lib_managed/
/src_managed/
/project/boot/
.history
.cache
### Scala template
*.class
*.log

# sbt specific
/.lib/
/dist/*
/project/plugins/project/
/.bsp/

# IDEA specific
/.idea/
target-idea/
*.iml

# EVE specific
/sde/

# Vite
/ui/.vite/

# Requests
/requests/*.private.env.json
16 changes: 16 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# The URL the site will be built for
base_url = "https://control-tower.space"

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

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

[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

[extra]
# Put all your custom variables here

0 comments on commit abe68b3

Please sign in to comment.