Skip to content

ShaneEverittM/site

Repository files navigation

semurphy.com

Personal portfolio and writing site for Shane Murphy. Built with Zola and deployed to GitHub Pages.

Stack

Layer Tool
Static site generator Zola 0.22.1 (Rust)
Templating Tera (Jinja2-like)
Styles Sass (compiled by Zola, no npm)
Hosting GitHub Pages
CI/CD GitHub Actions
Domain registrar Squarespace Domains

No Node.js, no npm, no JavaScript build tooling.

Local development

The toolchain is pinned by the Nix flake (see ADR 0007) — no separate Zola install needed.

Serve locally with live reload:

nix run

This runs zola serve with the correct config; the site is available at http://127.0.0.1:1111.

Build the site into ./result (the rendered public/ contents):

nix build

Or drop into a shell with the pinned Zola on PATH for ad-hoc commands:

nix develop

Deployment

Pushes to main automatically trigger the GitHub Actions workflow at .github/workflows/deploy.yml, which builds the site with Zola and deploys the public/ output to GitHub Pages.

GitHub Pages settings

In the repository's Settings → Pages:

  • Source: GitHub Actions
  • Custom domain: semurphy.com
  • Enforce HTTPS: enabled (once DNS has propagated)

Custom domain DNS (Squarespace)

The domain semurphy.com is registered through Squarespace Domains. The following DNS records must be set in the Squarespace DNS panel:

A records (root domain)

Type Host Value
A @ 185.199.108.153
A @ 185.199.109.153
A @ 185.199.110.153
A @ 185.199.111.153

CNAME record (www subdomain)

Type Host Value
CNAME www shaneeverittm.github.io

Note: Remove any default Squarespace A records before adding the GitHub Pages ones. DNS propagation can take up to 48 hours.

Project structure

content/        # Markdown content (pages, work, writing)
sass/           # Sass stylesheets
  _palette.scss # Colour tokens
  main.scss     # All styles
static/         # Static assets and CNAME file
templates/      # Tera HTML templates
  base.html     # Site shell (nav, footer)
  index.html    # Homepage
  page.html     # Individual pages
  section.html  # Section index pages
zola.toml       # Site config, hero content, about facts, links

About

My personal website: blog posts, contact info, workout tracking, etc.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors