|
| 1 | +# CLAUDE.md |
| 2 | + |
| 3 | +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. |
| 4 | + |
| 5 | +## Technology Stack |
| 6 | + |
| 7 | +This is a Jekyll-based static website hosted on GitHub Pages, serving as a personal blog and consulting services showcase for Volovyk ENK. The site uses the Minimal Mistakes theme. |
| 8 | + |
| 9 | +**Core Technologies:** |
| 10 | +- Jekyll static site generator |
| 11 | +- Ruby with Bundler for dependency management |
| 12 | +- Minimal Mistakes remote theme |
| 13 | +- GitHub Pages for hosting |
| 14 | +- Kramdown for Markdown processing |
| 15 | + |
| 16 | +## Development Commands |
| 17 | + |
| 18 | +**Local Development:** |
| 19 | +```bash |
| 20 | +bundle install # Install Ruby dependencies |
| 21 | +bundle exec jekyll serve # Start local development server at http://localhost:4000 |
| 22 | +bundle exec jekyll build # Build the site for production |
| 23 | +``` |
| 24 | + |
| 25 | +**Content Management:** |
| 26 | +- Blog posts go in `_posts/` with YYYY-MM-DD-title.md format |
| 27 | +- Pages go in `_pages/` directory |
| 28 | +- Services/products go in `_products/` collection |
| 29 | +- Images and assets go in `assets/` directory |
| 30 | + |
| 31 | +## Site Architecture |
| 32 | + |
| 33 | +**Content Structure:** |
| 34 | +- `_config.yml` - Main Jekyll configuration with theme settings, collections, and defaults |
| 35 | +- `_data/navigation.yml` - Site navigation structure |
| 36 | +- `_posts/` - Blog posts with frontmatter (title, categories, tags) |
| 37 | +- `_pages/` - Static pages (about, contact, archives) |
| 38 | +- `_products/` - Services collection for consulting offerings |
| 39 | +- `assets/images/` - Image assets including bio photo |
| 40 | + |
| 41 | +**Key Collections:** |
| 42 | +- Posts: Technical blog content focusing on Azure, .NET, and development practices |
| 43 | +- Products: Consulting services and startup MVP offerings |
| 44 | +- Pages: Standard site pages with custom permalinks |
| 45 | + |
| 46 | +**Theme Configuration:** |
| 47 | +- Uses `mmistakes/minimal-mistakes` remote theme |
| 48 | +- Configured for air skin with pagination (5 posts per page) |
| 49 | +- Author profile with bio, avatar, and social links |
| 50 | +- Category and tag archives with liquid-based generation |
| 51 | +- Search functionality enabled |
| 52 | + |
| 53 | +**Content Guidelines:** |
| 54 | +- Blog posts should include relevant categories and tags |
| 55 | +- Use frontmatter consistently across content types |
| 56 | +- Images should be optimized and placed in `assets/images/` |
| 57 | +- Follow established permalink patterns for consistency |
0 commit comments