A personal blog built with Hugo featuring a custom CloudASCII theme with animated ASCII cloud backgrounds.
- 🌩️ Animated ASCII Clouds - Floating cloud patterns made of ASCII characters
- 🖥️ Terminal Aesthetic - Dark theme with green/cyan terminal colors
- ⚡ Fast & Lightweight - Static site generation with Hugo
- 📱 Responsive Design - Works on all devices
- ✍️ Markdown Posts - Easy content creation with Markdown
- Hugo (extended version recommended)
# Clone the repository
git clone https://github.com/YOUR_USERNAME/myblog.git
cd myblog
# Start the development server
hugo server -D
# Open http://localhost:1313 in your browserhugo new posts/my-new-post.mdThen edit the file in content/posts/my-new-post.md.
hugo --minifyThe static site will be generated in the public/ directory.
myblog/
├── archetypes/ # Content templates
├── content/
│ ├── posts/ # Blog posts
│ └── about.md # About page
├── themes/
│ └── cloudascii/ # Custom theme
│ ├── layouts/ # HTML templates
│ └── static/
│ ├── css/ # Styles
│ └── js/ # ASCII animation
└── hugo.toml # Site configuration
Edit hugo.toml to customize:
- Site title and description
- Hero text
- Navigation menu
- Author information
Edit themes/cloudascii/static/css/style.css to modify the color scheme.
Edit themes/cloudascii/static/js/ascii-clouds.js to customize:
- Cloud density and speed
- Character set
- Colors
MIT License - feel free to use this for your own blog!
Built with ☁️ and Hugo