The official website for Planckeon Labs — R&D in fast | intelligent software tooling for theoretical physics.
Live site: https://planckeon.github.io
- Static Site Generator: Zola (v0.19.2+)
- Styling: Custom SCSS (self-contained deep space theme)
- Math Rendering: MathJax 3
- Deployment: GitHub Actions → GitHub Pages
- Hosting: GitHub Pages
Install Zola via Homebrew (macOS) or see Zola installation docs:
brew install zola# Clone the repository
git clone https://github.com/planckeon/planckeon.github.io.git
cd planckeon.github.io
# Start development server with live reload
zola serve
# Site will be available at http://127.0.0.1:1111zola build
# Output will be in ./public/planckeon.github.io/
├── config.toml # Zola configuration
├── content/ # Markdown content
│ ├── _index.md # Landing page metadata
│ └── about/
│ └── index.md # About page
├── sass/
│ └── site.scss # Main stylesheet (deep space theme)
├── static/
│ └── logo.png # Organization logo
├── templates/
│ ├── index.html # Landing page template
│ ├── page.html # Generic page template
│ └── 404.html # Error page
└── .github/
└── workflows/
└── deploy.yml # GitHub Actions deployment
The site uses a custom, self-contained SCSS theme with:
- Color Palette: Deep purples (#0a0a12 background), slate blue (#7b68ee), cyan (#00ced1), gold (#c9a227)
- Starfield Effect: CSS radial gradients creating a subtle star field
- Typography: System fonts with monospace for code
- Responsive Design: Mobile-first approach
- MathJax Support: LaTeX equations via
$...$and$$...$$
The theme has no external dependencies — it's fully self-contained in sass/site.scss.
Create a new directory under content/ with an index.md file:
+++
title = "Page Title"
description = "Page description for meta tags"
template = "page.html"
date = 2026-01-22
+++
Your markdown content here...Inline math: $E = mc^2$
Display math:
$$
S_A = \frac{\text{Area}(\gamma_A^{\min})}{4G_{d+1}}
$$
The site automatically deploys via GitHub Actions when changes are pushed to main:
- Zola builds the site
- Output is uploaded as a GitHub Pages artifact
- GitHub Pages serves from the artifact
See .github/workflows/deploy.yml for configuration.
- Fork the repository
- Create a feature branch:
git checkout -b feature/my-feature - Make your changes
- Test locally with
zola serve - Commit and push
- Open a pull request
- planckeon/.github — Organization README and profile
- planckeon/autograv — Numerical relativity + autodiff (JAX)
- planckeon/pauliz — Quantum computing simulation (Zig)
- planckeon/attn-as-bilinear-form — Transformer attention research
Content is licensed under CC BY 4.0. Code samples are licensed under MIT.