# Static Site Generators

> Static site generators for building fast, secure websites

- Skill: `neuralblitz/static-site-generators` (Agent Skill)
- Install (CLI): `npx skillmds@latest add neuralblitz/static-site-generators`
- Raw SKILL.md: https://api.skillmd.com/api/skills/neuralblitz/static-site-generators/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- License: MIT
- Author: NeuralBlitz (https://skillmd.com/u/neuralblitz)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/neuralblitz/static-site-generators

---

## What I do
- Build static sites from templates
- Use Markdown/MDX content
- Generate optimized assets
- Implement theming

## When to use me
When building blogs, documentation, or marketing sites.

## Hugo Example
```yaml
# config.yaml
baseURL: "https://example.org/"
languageCode: "en-us"
title: "My Site"

# content/posts/hello.md
---
title: "Hello World"
date: 2024-01-01
---
# Hello
Content here.
```

## Eleventy
```javascript
// .eleventy.js
module.exports = function(eleventyConfig) {
  eleventyConfig.addPassthroughCopy("css/");
  
  return {
    dir: { input: "src", output: "_site" }
  };
};
```

