{"id":27078755,"url":"https://github.com/kifbv/basker","last_synced_at":"2026-04-20T13:35:20.990Z","repository":{"id":286263875,"uuid":"959723086","full_name":"kifbv/basker","owner":"kifbv","description":"Bash static site generator","archived":false,"fork":false,"pushed_at":"2025-04-05T11:40:58.000Z","size":38,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-30T23:03:08.746Z","etag":null,"topics":["bash","catppuccin","cmark","static-site-generator"],"latest_commit_sha":null,"homepage":"","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kifbv.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-04-03T08:47:27.000Z","updated_at":"2025-04-05T11:41:02.000Z","dependencies_parsed_at":"2025-04-09T20:18:30.789Z","dependency_job_id":"9c38af6d-6a05-415c-8270-fa1a7a0d1f54","html_url":"https://github.com/kifbv/basker","commit_stats":null,"previous_names":["kifbv/basker"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/kifbv/basker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kifbv%2Fbasker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kifbv%2Fbasker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kifbv%2Fbasker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kifbv%2Fbasker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kifbv","download_url":"https://codeload.github.com/kifbv/basker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kifbv%2Fbasker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32049052,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","catppuccin","cmark","static-site-generator"],"created_at":"2025-04-06T01:17:53.697Z","updated_at":"2026-04-20T13:35:20.954Z","avatar_url":"https://github.com/kifbv.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🌟 Basker - A Minimalist Static Site Generator 🌟\n\n## 📝 Overview\n\nBasker is a lightweight static site generator that converts Markdown files into a beautifully styled website using the Catppuccin color theme. It's perfect for blogs, documentation sites, or personal websites that prioritize simplicity and readability.\n\nCheck out the live demo at [basker.franckratier.design](https://basker.franckratier.design) to see Basker in action!\n\n## ✨ Features\n\n- 🌓 **Dark/Light Mode Toggle**: Switch between Catppuccin Latte \u0026 Mocha themes with a click\n- 📱 **Responsive Design**: Looks great on mobile, tablet, and desktop\n- 🔤 **Google Fonts**: Uses Cinzel for headings and Fauna One for body text\n- 📅 **Automatic Date Handling**: Sorts posts by date and displays them nicely\n- 🔄 **Simple Build Process**: One script to generate your entire site\n\n## 🚀 Getting Started\n\n### Prerequisites\n\n- Bash shell\n- [cmark](https://github.com/commonmark/cmark) for Markdown processing\n\n### Installation\n\n1. Use this repository as a template:\n   - Click the \"Use this template\" button at the top of the [GitHub repository](https://github.com/kifbv/basker)\n   - Name your new repository and create it\n   - Clone your new repository:\n   ```bash\n   git clone https://github.com/yourusername/your-repo-name.git\n   cd your-repo-name\n   ```\n\n2. Place your Markdown files in the `src/` directory\n\n3. Run the build script:\n   ```bash\n   ./build.sh\n   ```\n\n4. Your generated site will be in the `docs/` directory. Browse/test it locally and [publish it](https://docs.github.com/en/pages) to Github Pages!\n\n## 📄 File Structure\n\n```\nbasker/\n├── build.sh           # Main build script\n├── header.html        # Header template\n├── footer.html        # Footer template\n├── catppuccin-latte.css # Light theme\n├── catppuccin-mocha.css # Dark theme\n├── src/               # Place your Markdown files here\n│   ├── post1.md\n│   ├── post2.md\n│   └── ...\n└── docs/              # Generated HTML and assets\n    ├── index.html\n    ├── post1.html\n    └── ...\n```\n\n## 📝 Creating Content\n\n### Markdown Format\n\nEach Markdown file should include YAML frontmatter at the top:\n\n```markdown\n---\ntitle: My Awesome Post\ndescription: A brief description of the post\ndate: 2024-04-03\n---\n\n# Main Content Starts Here\n\nYour markdown content goes here...\n```\n\n- The `title` appears in the post and index page\n- The `description` is used in the index page\n- The `date` is used for sorting (will be added automatically if missing)\n\n## 🎨 Customization\n\n### Site Name\n\nChange the `SITE_NAME` variable in `build.sh`:\n\n```bash\nSITE_NAME=\"Your Site Name\"\n```\n\n### Styling\n\nModify the CSS files to change the appearance:\n\n- `catppuccin-latte.css` - Light theme\n- `catppuccin-mocha.css` - Dark theme\n\n### Fonts\n\nThe site uses Google Fonts:\n- Cinzel for titles (elegant serif font)\n- Fauna One for body text (readable serif font)\n- Monospace for code blocks\n\nTo change fonts, edit:\n1. The Google Fonts import in `header.html`\n2. The same import in the index page section of `build.sh`\n3. Update the font-family properties in both CSS files\n\n## 🔧 Advanced Usage\n\n### Adding Images\n\nPlace image files in the `dist/` directory and reference them in your Markdown:\n\n```markdown\n![My Image](image.jpg)\n```\n\n### Custom HTML\n\nYou can include HTML directly in your Markdown files:\n\n```markdown\n\u003cdiv class=\"custom-container\"\u003e\n  Custom HTML here\n\u003c/div\u003e\n```\n\n## 📚 Examples\n\nCheck out the example posts in the `src/` directory to see how to format your content.\n\n## 🤝 Contributing\n\nContributions are welcome! Feel free to submit issues or pull requests.\n\n## 📄 License\n\nThis project is open source and available under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkifbv%2Fbasker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkifbv%2Fbasker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkifbv%2Fbasker/lists"}