{"id":31327956,"url":"https://github.com/bmehder/nostalgiaphp","last_synced_at":"2026-05-09T16:52:59.036Z","repository":{"id":313425918,"uuid":"1051392347","full_name":"bmehder/NostalgiaPHP","owner":"bmehder","description":"A caveman-simple file-based CMS","archived":false,"fork":false,"pushed_at":"2025-09-20T17:26:24.000Z","size":2392,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-20T18:31:05.096Z","etag":null,"topics":["cms","markdown","minimal","php"],"latest_commit_sha":null,"homepage":"https://nostalgiaphp.onrender.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/bmehder.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-05T23:03:11.000Z","updated_at":"2025-09-20T17:26:27.000Z","dependencies_parsed_at":"2025-09-13T02:21:31.537Z","dependency_job_id":null,"html_url":"https://github.com/bmehder/NostalgiaPHP","commit_stats":null,"previous_names":["bmehder/nostalgiaphp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bmehder/NostalgiaPHP","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmehder%2FNostalgiaPHP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmehder%2FNostalgiaPHP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmehder%2FNostalgiaPHP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmehder%2FNostalgiaPHP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bmehder","download_url":"https://codeload.github.com/bmehder/NostalgiaPHP/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bmehder%2FNostalgiaPHP/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276997034,"owners_count":25742353,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-25T02:00:09.612Z","response_time":80,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cms","markdown","minimal","php"],"created_at":"2025-09-25T23:39:26.537Z","updated_at":"2025-09-25T23:39:28.933Z","avatar_url":"https://github.com/bmehder.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nostalgia PHP  \n\n🚀 **Live Demo:** [nostalgiaphp.onrender.com](https://nostalgiaphp.onrender.com/)\n\n\u003e A file-based CMS for people who survived WordPress and the JavaScript framework wars.  \n\n---\n\n## Why?  \n\nBack in 2004, making a site was simple:  \n- A couple of PHP files on a server.\n- Maybe a MySQL table or two.\n- Edit `header.php` and `footer.php` live and hit refresh.\n\nThen the web went sideways:  \n- WordPress themes turned into small operating systems.  \n- JavaScript discovered frameworks… then metaframeworks… then frameworks for those.  \n- Every site suddenly needed `npm install` and a thousand dependencies just to render “Hello World.”  \n\nAll you wanted was a website.  \n\n---\n\n## What is NostalgiaPHP?  \n\nIt’s **not a framework**.  \nIt’s **not a static site generator**.  \nIt’s **definitely not WordPress**.  \n\n👉 It’s a tiny flat-file CMS that:  \n- Uses Markdown files as your database.  \n- Routes everything through one `index.php`.  \n- Renders with simple templates and partials.  \n- Makes URLs pretty with `.htaccess`.  \n\nThat’s it.  \n\n---\n\n## Features  \n\n- Write pages and collections in **Markdown**.  \n- Drop in **partials** (`header.php`, `footer.php`).  \n- No database. No build step. No Node.  \n- Runs anywhere PHP runs (which is… everywhere).  \n\n---\n\n## Installation  \n\n1. Copy the files.  \n2. Run `php -S localhost:8000`.  \n3. Visit [http://localhost:8000](http://localhost:8000).  \n4. Make pages. Done.  \n\n---\n\n## Why Markdown?\n\nBecause it’s the glue.  \n\nYour content lives in **Markdown + front-matter**. That’s the portable layer.  \nWrite it once, and it can be rendered by just about anything:  \n\n- **PHP** → NostalgiaPHP + Parsedown  \n- **Python** → Flask + Markdown/Mistune + Jinja2  \n- **Ruby** → Sinatra + Kramdown  \n- **JavaScript** → Eleventy (11ty) + Markdown-it  \n- **Haskell** → Hakyll (Pandoc under the hood)  \n- **Go** → Hugo (Markdown + front-matter baked in)  \n\nThe runtime doesn’t matter. The content does.  \nNostalgiaPHP just happens to be the tiniest, laziest way to get it on the web right now.\n\n---\n\n## Philosophy  \n\n- Simple sites deserve simple tools.  \n- Markdown first, HTML if you need it.  \n- PHP is fine. Stop pretending it isn’t.  \n- If your site needs a build system, you’re overthinking it.  ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbmehder%2Fnostalgiaphp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbmehder%2Fnostalgiaphp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbmehder%2Fnostalgiaphp/lists"}