Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 858 Bytes

File metadata and controls

48 lines (33 loc) · 858 Bytes

tylerhext.com

Personal website built with 11ty (Eleventy).

Quick Start

# Install dependencies
npm install

# Build site
npm run build

# Serve locally with live reload
npm run serve

# Clean build directory
npm run clean

Adding Content

Update an existing post

  1. Edit the post in src/posts/
  2. Add new content (photos, text)
  3. Update the updated date in frontmatter
  4. Build and deploy

Add a new post

  1. Create src/posts/your-post-name.md
  2. Add frontmatter and content
  3. Place images in src/assets/images/
  4. Build and deploy

See CLAUDE.md for detailed documentation.

Deployment

The site deploys automatically via GitHub Pages from the docs/ directory on the master branch.

npm run build
git add .
git commit -m "Update site"
git push origin master