{"id":44478249,"url":"https://github.com/lunet-io/lunet","last_synced_at":"2026-03-01T19:04:50.088Z","repository":{"id":41176132,"uuid":"60139468","full_name":"lunet-io/lunet","owner":"lunet-io","description":"A fast, modular static website generator","archived":false,"fork":false,"pushed_at":"2026-02-22T14:07:53.000Z","size":3564,"stargazers_count":109,"open_issues_count":0,"forks_count":6,"subscribers_count":9,"default_branch":"main","last_synced_at":"2026-02-22T18:59:07.757Z","etag":null,"topics":["dotnet","scriban","site-generator","static-site-generator"],"latest_commit_sha":null,"homepage":"https://lunet.io","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lunet-io.png","metadata":{"files":{"readme":"readme.md","changelog":"changelog.md","contributing":null,"funding":".github/FUNDING.yml","license":"license.txt","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":"AGENTS.md","dco":null,"cla":null},"funding":{"github":["xoofx"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2016-06-01T02:32:57.000Z","updated_at":"2026-02-22T14:07:52.000Z","dependencies_parsed_at":"2024-03-17T15:39:41.754Z","dependency_job_id":null,"html_url":"https://github.com/lunet-io/lunet","commit_stats":null,"previous_names":[],"tags_count":50,"template":false,"template_full_name":null,"purl":"pkg:github/lunet-io/lunet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lunet-io%2Flunet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lunet-io%2Flunet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lunet-io%2Flunet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lunet-io%2Flunet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lunet-io","download_url":"https://codeload.github.com/lunet-io/lunet/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lunet-io%2Flunet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29980919,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T16:35:47.903Z","status":"ssl_error","status_checked_at":"2026-03-01T16:35:44.899Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["dotnet","scriban","site-generator","static-site-generator"],"created_at":"2026-02-12T23:09:50.969Z","updated_at":"2026-03-01T19:04:50.082Z","avatar_url":"https://github.com/lunet-io.png","language":"C#","funding_links":["https://github.com/sponsors/xoofx"],"categories":[],"sub_categories":[],"readme":"# lunet [![ci](https://github.com/lunet-io/lunet/actions/workflows/ci.yml/badge.svg)](https://github.com/lunet-io/lunet/actions/workflows/ci.yml) [![NuGet](https://img.shields.io/nuget/v/lunet.svg)](https://www.nuget.org/packages/lunet/)\n\n\u003cimg align=\"right\" width=\"196px\" height=\"196px\" src=\"site/img/lunet.png\"\u003e\n\nLunet is a fast, modular static website generator for .NET, powered by [Scriban](https://github.com/scriban/scriban) templates.\n\n## ✨ Features\n\n- **Scriban templating** — full scripting language in your pages, layouts, and config (`config.scriban`)\n- **Layouts \u0026 includes** — automatic layout resolution with section-aware search paths\n- **Themes \u0026 extensions** — install themes/plugins directly from GitHub repos (`extend \"owner/repo@tag\"`)\n- **npm resources** — fetch and cache npm packages (Bootstrap, Font Awesome…) without a separate `node_modules` workflow\n- **Markdown** — [Markdig](https://github.com/xoofx/markdig)-based with cross-reference link support\n- **SCSS / Dart Sass** — compile SCSS to CSS with the embedded Dart Sass compiler\n- **Bundles** — declarative CSS/JS bundling with automatic minification\n- **Taxonomies** — tags, categories, or any custom taxonomy with auto-generated term pages\n- **RSS, sitemaps, search** — RSS feeds, `sitemap.xml`, and client-side search index generation\n- **SEO \u0026 social cards** — OpenGraph / Twitter meta tags from page metadata\n- **Data loading** — pull structured data from YAML, JSON, or TOML files into templates\n- **Menus** — define navigation trees via simple `menu.yml` files\n- **Live reload** — built-in dev server with file watcher and automatic browser refresh\n- **Analytics** — Google Analytics injection (production builds only)\n- **.NET API docs** — generate API reference pages from .NET projects/assemblies — unique to Lunet\n- **URL patterns** — glob-based rules to apply metadata (URLs, layouts, etc.) across pages\n- **Summarizer** — automatic page summaries for feeds and cards\n\n## 🚀 Quick start\n\nInstall Lunet as a global .NET tool:\n\n```sh\ndotnet tool install --global lunet\n```\n\nCreate and serve a site:\n\n```sh\nmkdir mysite \u0026\u0026 cd mysite\nlunet init\nlunet serve\n```\n\nYour site is live at `http://localhost:4000`. Edit pages and watch changes reload instantly.\n\nBuild for production:\n\n```sh\nlunet build\n```\n\nOutput goes to `.lunet/build/www`.\n\n## 🎨 Themes\n\nInstall a theme from any GitHub repository:\n\n```\n# In config.scriban\nextend \"owner/repo@v1.0\"\n```\n\nThemes layer on top of your site — layouts, includes, and static files merge seamlessly.\n\n## 📖 Documentation\n\nFull user guide and module reference at **[lunet.io](https://lunet.io)**.\n\n## 🪪 License\n\nThis software is released under the [BSD-2-Clause license](https://github.com/lunet-io/lunet/blob/master/license.txt).\n\n## 🤗 Author\n\nAlexandre Mutel aka [xoofx](https://xoofx.github.io)\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flunet-io%2Flunet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flunet-io%2Flunet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flunet-io%2Flunet/lists"}