{"id":35572856,"url":"https://github.com/cliffordwebhole/webholeink","last_synced_at":"2026-01-16T16:57:59.586Z","repository":{"id":331353912,"uuid":"1125896725","full_name":"cliffordwebhole/webholeink","owner":"cliffordwebhole","description":"WebholeInk is a minimalist, open-source blogging engine built by and for developers who care about security, stability, and owning their words long-term.","archived":false,"fork":false,"pushed_at":"2026-01-12T16:16:14.000Z","size":4841,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-13T21:09:25.172Z","etag":null,"topics":["blogging","cms","developer-tools","markdown","markdown-language","minimalist","open-source","self-hosted"],"latest_commit_sha":null,"homepage":"https://webholeink.com","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cliffordwebhole.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE. Md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"docs/SECURITY.md","support":null,"governance":null,"roadmap":"docs/ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-31T15:40:25.000Z","updated_at":"2026-01-12T16:07:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/cliffordwebhole/webholeink","commit_stats":null,"previous_names":["cliffordwebhole/webholeink"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/cliffordwebhole/webholeink","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cliffordwebhole%2Fwebholeink","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cliffordwebhole%2Fwebholeink/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cliffordwebhole%2Fwebholeink/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cliffordwebhole%2Fwebholeink/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cliffordwebhole","download_url":"https://codeload.github.com/cliffordwebhole/webholeink/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cliffordwebhole%2Fwebholeink/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28480081,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: 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":["blogging","cms","developer-tools","markdown","markdown-language","minimalist","open-source","self-hosted"],"created_at":"2026-01-04T18:16:09.605Z","updated_at":"2026-01-16T16:57:59.578Z","avatar_url":"https://github.com/cliffordwebhole.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WebholeInk\n\n**WebholeInk** is a minimal, developer-first publishing engine.\n\nNo plugins.  \nNo databases.  \nNo magic.\n\nJust files, clear contracts, and full control.\n\n---\n\n## 🚀 Status\n\n**v0.1.0 — Core Stable**\n\nThe core engine is complete and locked.\n\nThis release establishes:\n- Routing\n- Handlers\n- Content resolution\n- Theming\n- Navigation\n- Markdown rendering\n- View and layout contracts\n\nNo new features will be added to core without a version bump.\n\n## v0.1.2 — Platform Hardening \u0026 Documentation\n\nThis release builds **around** the locked core without modifying it.\n\nv0.1.2 focuses on operational stability, discoverability, and long-term maintainability rather than new features.\n\nThis release adds:\n\n- Full documentation system (`/docs`) rendered from Markdown\n- Canonical URLs, Open Graph, and Twitter metadata\n- RSS (`feed.xml`) and JSON Feed (`feed.json`)\n- Sitemap generation (`sitemap.xml`)\n- Robots.txt for crawler control\n- HTTP security headers\n- HTTP caching with ETag and Last-Modified support\n- Draft-aware content exclusion\n- CLI tooling for content creation\n- Deployment and operations documentation\n\nNo changes were made to:\n\n- Core routing logic\n- Content resolution rules\n- View or layout contracts\n- Markdown parsing behavior\n\nThe core remains **stable, locked, and boring**.\n\nv0.1.2 establishes WebholeInk as a **production-ready publishing platform** while preserving the integrity of the core engine.\n---\n\n## 🎯 Philosophy\n\nWebholeInk exists to solve one problem well:\n\n\u003e **Publish content without surrendering control.**\n\nEverything is explicit.\nEverything is readable.\nEverything is owned by the developer.\n\nThere is no admin panel.\nThere is no plugin system.\nThere is no database requirement.\n\nIf it’s not in the filesystem, it doesn’t exist.\n\n---\n\n## 🧱 Architecture Overview\n\npublic/         → HTTP entry point (only public files) app/            → Core engine (locked) content/        → Markdown content (pages, posts) config/         → Explicit configuration docs/           → Contracts \u0026 documentation\nCore responsibilities are split cleanly:\n\n- **Router** → maps paths to handlers\n- **Handlers** → decide *what* to render\n- **PageResolver** → resolves content files\n- **View / PageView** → renders templates safely\n- **Layout** → wraps content with theme chrome\n- **Themes** → presentation only (no logic)\n\n---\n\n## 📝 Content Model\n\nContent is file-based and predictable.\ncontent/ └── pages/ ├── home.md ├── about.md ├── philosophy.md └── page.md\n\n- URLs map directly to filenames\n- `/about` → `content/pages/about.md`\n- Markdown is parsed at runtime\n- No front-matter required (by design)\n\n---\n\n## 🎨 Theming\n\nThemes are PHP templates, not magic.\n\napp/themes/default/ ├── layout.php ├── home.php ├── page.php ├── navigation.php ├── footer.php └── assets/\n\n- Themes do **presentation only**\n- Logic lives in handlers and core\n- Assets are served from `public/themes/`\n\n---\n### 🎨 Author-Controlled Themes\n\nWebholeInk supports multiple visual themes per site.\n\n- Themes are selected by the publisher\n- Visitors cannot toggle themes\n- Themes are versioned and cache-safe\n- No JavaScript required\n\nThis ensures predictable rendering and long-term maintainability.\n\n---\n## 📚 Contracts (Locked)\n\nCore behavior is defined by explicit contracts:\n\n- `CORE.md` – system architecture\n- `ROUTES.md` – routing rules\n- `HANDLERS.md` – handler contract\n- `CONTENT.md` – content resolution rules\n- `VIEW.md` – view rendering rules\n- `NAVIGATION.md` – navigation behavior\n- `THEMES.md` – theming constraints\n\nIf it’s not documented, it’s not supported.\n\n---\n\n## 🔒 Stability Guarantee\n\nThis release is **core-stable**.\n\nThat means:\n- No breaking changes without a version bump\n- No silent behavior changes\n- No scope creep\n\nFuture work will build **on top of** this foundation, not rewrite it.\n\n---\n\n## 🛠 Requirements\n\n- PHP 8.2+\n- Nginx or compatible web server\n- No database\n- No extensions beyond standard PHP\n\n---\n\n## 📦 Backup \u0026 Recovery\n\nWebholeInk is intentionally easy to back up:\n\n- Filesystem snapshot\n- Git repository\n- No state hidden elsewhere\n\nIf you can copy a directory, you can restore the site.\n\n---\n\n## 🧭 Roadmap\n\n**v0.2.0 (Planned)**\n- Collections / posts\n- Metadata (optional, explicit)\n- Pagination helpers\n\nCore principles will not change.\n\n---\n\n## 🐝 Built By\n\nClifford Webhole  \n\n---\n\n**WebholeInk**  \n_Developer-first publishing, without compromise._\n\n\n## Documentation\n- [Core Architecture](docs/CORE.md)\n- [Routing Rules](docs/ROUTER.md)\n- [Handler Contract](docs/HANDLERS.md)\n- [Content Rules](docs/CONTENT.md)\n- [Themes Contract](docs/THEMES.md)\n- [View Contract](docs/VIEW.md)\n- [Navigation Contract](docs/NAVIGATION.md)\n- [Project Status](docs/STATUS.md)\n- See [Installation](./INSTALL.md) for first-time setup.\n## 📄 License\n\nWebholeInk is open-source software licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcliffordwebhole%2Fwebholeink","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcliffordwebhole%2Fwebholeink","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcliffordwebhole%2Fwebholeink/lists"}