A professional technical blog built with Zola static site generator, demonstrating modern web development practices, infrastructure automation, and complex deployment workflows.
- Modern SASS Architecture: Organized with variables, mixins, and modular stylesheets
- Real-time Search: Dropdown search with Elasticlunr.js integration
- Responsive Design: Mobile-first approach with professional styling
- Tag System: Categorized posts with visual tag display
- SEO Optimized: Clean URLs, meta descriptions, and semantic HTML
- Static Site Generation: Zola with template inheritance
- Asset Pipeline: Automatic SASS compilation and optimization
- Search Index: Client-side search with full-text indexing
- Performance: Lightweight, fast-loading pages
- Zola: Modern static site generator in Rust
- SASS: CSS preprocessing with advanced features
- JavaScript: Vanilla JS for search functionality
- Elasticlunr.js: Client-side search indexing
- HTML5/CSS3: Modern web standards
- Python: Content processing and conversion scripts
Tech_Blog/
βββ config.toml # Zola configuration
βββ content/ # Markdown blog posts
βββ templates/ # Jinja2 templates
βββ sass/ # SASS stylesheets
β βββ _variables.scss # Design tokens
β βββ _base.scss # Base styles
β βββ _layout.scss # Layout components
β βββ main.scss # Main entry point
βββ static/ # Static assets
βββ convert_blogs.py # Content processing script
βββ public/ # Generated site (ignored)
- Zola installed
- Python 3.7+ (for content processing)
# Clone the repository
git clone https://github.com/YOUR_USERNAME/tech-blog.git
cd tech-blog
# Serve locally with hot reload
zola serve
# Build for production
zola build
# Clean build (removes public directory)
rm -rf public && zola build
# Convert raw blog posts to Zola format
python3 convert_blogs.py
# Add new post
# 1. Create markdown file in content/
# 2. Add front matter with title, date, tags
# 3. Build and test locally
This project showcases a complex, production-ready deployment pipeline:
Internet β OpenBSD VPS β WireGuard Tunnel β FreeBSD Box β nginx Jail
- OpenBSD VPS: Public-facing server with relayd load balancer
- WireGuard VPN: Secure tunnel between VPS and home lab
- FreeBSD Host: Home lab server with jail-based services
- nginx Jail: Containerized web server for security isolation
- IPv6 Ready: Full dual-stack IPv4/IPv6 support
- Local Build:
zola build
generates static site - File Transfer:
scp
to FreeBSD staging area - Jail Deployment: Copy files to nginx jail with proper permissions
- Service Management: Restart nginx within jail
- Load Balancer: OpenBSD relayd with health checks
- DNS: AAAA records for IPv6 connectivity
- Variables: Centralized design tokens
- Mixins: Reusable CSS components
- Nesting: Organized, maintainable stylesheets
- Functions: Dynamic color manipulation
- Responsive Design: Mobile-first breakpoints
- Index Generation: Zola's built-in search index
- Client-side Search: JavaScript with Elasticlunr
- UX Patterns: Dropdown results with keyboard navigation
- Performance: Minimal payload, fast search
- FreeBSD Administration: Jail management, permissions
- OpenBSD Security: pf firewall, relayd configuration
- Network Troubleshooting: VPN tunnels, health checks
- Service Management: Process monitoring, log analysis
- SASS Compilation Issues: Fixed template paths and build process
- Search Functionality: Implemented dropdown search with proper state management
- Network Connectivity: Debugged firewall rules and VPN routing
- Load Balancer Health Checks: Configured proper service monitoring
- IPv6 Deployment: Full dual-stack network configuration
- Fast Loading: Optimized static assets and minimal JavaScript
- Search Performance: < 100ms query response time
- Mobile Optimized: Responsive design with touch-friendly interface
- SEO Ready: Semantic HTML and proper meta tags
This project demonstrates:
- Clean, Professional Design: Minimal, content-focused interface
- Performance First: Optimized for speed and accessibility
- Semantic HTML: Proper document structure and SEO
- Progressive Enhancement: Works with JavaScript disabled
- Mobile-First: Responsive design from small screens up
- Static Site Security: No server-side vulnerabilities
- Jail-based Deployment: Containerized web server
- Firewall Configuration: Proper network security
- Version Control: Professional Git workflow
- Documentation: Comprehensive project documentation
- Modern CSS architecture with SASS
- JavaScript DOM manipulation and event handling
- Responsive design and mobile optimization
- SEO and performance optimization
- Static site generation workflows
- FreeBSD jail management
- OpenBSD server configuration
- Network security and firewalls
- Service monitoring and health checks
- Log analysis and troubleshooting
- Automated deployment pipelines
- VPN tunnel configuration
- Load balancer setup
- DNS management (IPv4/IPv6)
- Version control best practices
This is a personal portfolio project showcasing professional development practices. The code demonstrates various techniques and patterns that may be useful for learning purposes.
See COPYRIGHT.md for usage rights and restrictions.
Built with attention to detail and professional development practices.
This project represents a complete full-stack development workflow, from initial design and implementation through complex infrastructure deployment and ongoing maintenance.