Static website for eQuill Labs showcasing recent projects and tools. Discord: https://discord.gg/sp8AQQhMJ7
The website uses a lightweight build system with Handlebars for templating and a dark mode design.
Source files:
src/
├── static/ # Static assets (CSS, JS, images)
│ ├── css/ # Stylesheets
│ ├── js/ # JavaScript files
│ └── images/ # Image assets
└── templates/ # Handlebars templates
├── layouts/ # Layout templates (default, project)
├── pages/ # Page content
└── partials/ # Reusable components (header, footer)
Build output:
pages/ # Production build output
├── css/ # Processed stylesheets
├── js/ # Processed scripts
├── images/ # Optimized images
├── index.html # Homepage
└── projects/ # Project pages
├── project-xyz.html
├── project-abc.html
npm ci
npm run watch
npm run build
.hbs file in src/templates/pages/---
layout: default|project # Use 'project' layout for project pages
title: Page Title
relative: ../ # Relative path to root from page location
---