A multilingual Hugo blog for the WaqtSalat prayer times project.
- Trilingual: English, French, Arabic (RTL support)
- SEO optimized: JSON-LD structured data
- Fast: Static site generated by Hugo
- Clean: Minimal, accessible design
# Clone and run locally
git clone https://github.com/waqtsalat/blog.git
cd blog
hugo server -D# English post
hugo new content en/posts/my-post.md
# French post
hugo new content fr/posts/mon-post.md
# Arabic post
hugo new content ar/posts/منشور.mdblog/
├── content/
│ ├── en/ # English content
│ ├── fr/ # French content
│ └── ar/ # Arabic content
├── i18n/ # Translations
├── layouts/ # HTML templates
├── static/ # CSS, JS, images
└── hugo.toml # Configuration
Automatically deployed to GitHub Pages via .github/workflows/hugo.yml.
GPL-3.0