Skip to content

distributedequity.org

The Distributed Equity site at distributedequity.org presents “Distributed Equity — A License for the Age of AI”. It is a single-page static HTML site with no build step and no JavaScript framework.

TechnologyRole
HTML5Page structure
CSS3 (custom properties, 12-column grid)Styling and layout
Google FontsTypography (Barlow Condensed, Barlow, IBM Plex Mono)
nginxStatic file serving

A single index.html presenting the Distributed Equity License (DEL) with a light-themed design using a 12-column CSS grid layout.

distributedequity-org/
├── public/
│ └── index.html
├── Dockerfile
├── nginx.conf
├── docker-compose.yml
└── package.json

All styling is inline within index.html using CSS custom properties:

VariableValueUsage
--orangeOrangePrimary accent
--blackNear-blackText
--whiteWhiteBackground
--font-displayBarlow CondensedDisplay headings
--font-bodyBarlowBody text
--font-monoIBM Plex MonoCode and technical text

The design uses a light colour scheme with a condensed display font and a 12-column grid for structured content layout.

Single-stage Dockerfile:

  1. nginx 1.28.2 Alpine copies public/ directly into the web root
  2. sed replaces {{COMMIT_SHA}} in index.html at Docker build time
  3. Runs as non-root on port 8080