A clean, minimal, single-page Zola theme for API and developer product landing pages.
- Single-page responsive design
- Minimal styling with blue color scheme
- Easy configuration via
config.toml - Ready for deployment
zola init my-api-site
cd my-api-site
git clone https://github.com/VishalRashmika/OnePageAPI.git themes/OnePageAPIEnable in config.toml:
theme = "OnePageAPI"Start development:
zola serveChange content: Edit templates/index.html
Change colors: Replace #2563eb in static/style.css with your brand color
Add logo: Place image in static/ and update header in templates/index.html
Build:
zola buildDeploy the public/ directory to:
- Netlify/Vercel: Build command:
zola build, Output:public - GitHub Pages:
git subtree push --prefix public origin gh-pages - Cloudflare Pages: Build command:
zola build, Output:public
apilanding/
├── config.toml
├── content/
│ └── _index.md
├── templates/
│ ├── base.html
│ └── index.html
└── static/
└── style.css
MIT License