Files
markusgraf_ch/openspec/changes/add-minimal-hugo-site/tasks.md
T
Markus GrafandClaude d36a18d28b feat: initialize Hugo static site with Bootstrap 5.x
Initialize minimal Hugo site structure with Bootstrap 5.3.2 integration for
markusgraf.ch conversion. Implements OpenSpec proposal add-minimal-hugo-site.

Features:
- Hugo project structure with standard directories
- Base layout template (baseof.html) with Bootstrap 5.3.2 via CDN
- Homepage (index.html) and single page (single.html) templates
- Reusable partials: header, footer, navigation
- Responsive Bootstrap grid layout
- Mobile-first design with semantic HTML5
- Valid HTML output with basic accessibility features
- Taxonomies disabled for minimal site (see docs/TAXONOMIES.md)

Documentation:
- IMPLEMENTATION_SUMMARY.md - Complete implementation guide
- docs/TAXONOMIES.md - Guide for re-enabling categories/tags
- static/README.md - Guide for placing static assets

Configuration:
- hugo.toml configured for markusgraf.ch
- .gitignore for Hugo build artifacts

All 24 tasks from OpenSpec proposal completed successfully.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-27 10:25:11 +01:00

1.0 KiB

1. Hugo Project Setup

  • 1.1 Initialize Hugo site structure
  • 1.2 Create hugo.toml/yaml configuration file
  • 1.3 Set up directory structure (layouts, content, static, data)

2. Layout Templates

  • 2.1 Create baseof.html layout template
  • 2.2 Create index.html template for homepage
  • 2.3 Create default single page template

3. Partials

  • 3.1 Create header partial
  • 3.2 Create footer partial
  • 3.3 Create navigation partial

4. Bootstrap Integration

  • 4.1 Add Bootstrap 5.x CSS to project
  • 4.2 Configure Bootstrap in base layout
  • 4.3 Apply Bootstrap classes to templates

5. Content Migration

  • 5.1 Review existing markusgraf.ch HTML structure
  • 5.2 Create content files in Hugo format
  • 5.3 Migrate static assets (images, fonts, etc.)

6. Testing and Validation

  • 6.1 Test Hugo build locally
  • 6.2 Verify all pages render correctly
  • 6.3 Check responsive design on mobile/tablet/desktop
  • 6.4 Validate HTML output
  • 6.5 Test accessibility basics