{"id":15190419,"url":"https://github.com/jquery/plugins.jquery.com-static","last_synced_at":"2026-01-04T13:31:31.631Z","repository":{"id":211789813,"uuid":"708836278","full_name":"jquery/plugins.jquery.com-static","owner":"jquery","description":"Static archive of the old plugins.jquery.com site.","archived":false,"fork":false,"pushed_at":"2024-09-28T00:20:20.000Z","size":262387,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-29T13:11:22.896Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://plugins.jquery.com/","language":"HTML","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/jquery.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}},"created_at":"2023-10-23T13:42:07.000Z","updated_at":"2024-09-28T00:18:44.000Z","dependencies_parsed_at":"2024-09-11T11:24:12.737Z","dependency_job_id":null,"html_url":"https://github.com/jquery/plugins.jquery.com-static","commit_stats":null,"previous_names":["timmywil/plugins.jquery.com","jquery/plugins.jquery.com-static"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jquery%2Fplugins.jquery.com-static","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jquery%2Fplugins.jquery.com-static/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jquery%2Fplugins.jquery.com-static/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jquery%2Fplugins.jquery.com-static/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jquery","download_url":"https://codeload.github.com/jquery/plugins.jquery.com-static/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237116421,"owners_count":19258248,"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","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":[],"created_at":"2024-09-27T20:23:06.148Z","updated_at":"2025-10-19T11:30:28.193Z","avatar_url":"https://github.com/jquery.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# plugins.jquery.com\n\nStatic archive of the old plugins registry at plugins.jquery.com.\n\n## Getting Started\n\n- [Want a more generic/detailed getting started guide?](https://www.11ty.dev/docs/getting-started/)\n\n1. Make a directory and navigate to it:\n\n```\nmkdir my-blog-name\ncd my-blog-name\n```\n\n2. Clone this Repository\n\n```\ngit clone https://github.com/11ty/eleventy-base-blog.git .\n```\n\n_Optional:_ Review `eleventy.config.js` and `_data/metadata.js` to configure the site’s options and data.\n\n3. Install dependencies\n\n```\nnpm install\n```\n\n4. Run Eleventy\n\nGenerate a production-ready build to the `_site` folder:\n\n```\nnpx @11ty/eleventy\n```\n\nOr build and host on a local development server:\n\n```\nnpx @11ty/eleventy --serve\n```\n\nOr you can run [debug mode](https://www.11ty.dev/docs/debugging/) to see all the internals.\n\n## Features\n\n- Using [Eleventy v2.0](https://www.11ty.dev/blog/eleventy-v2/) with zero-JavaScript output.\n  - Content is exclusively pre-rendered (this is a static site).\n  - Can easily [deploy to a subfolder without changing any content](https://www.11ty.dev/docs/plugins/html-base/)\n  - All URLs are decoupled from the content’s location on the file system.\n  - Configure templates via the [Eleventy Data Cascade](https://www.11ty.dev/docs/data-cascade/)\n- **Performance focused**: four-hundos Lighthouse score out of the box!\n  - [View the Lighthouse report for the latest build](https://eleventy-base-blog.netlify.app/reports/lighthouse/) courtesy of the [Netlify Lighthouse plugin](https://github.com/netlify/netlify-plugin-lighthouse).\n  - _0 Cumulative Layout Shift_\n  - _0ms Total Blocking Time_\n- Local development live reload provided by [Eleventy Dev Server](https://www.11ty.dev/docs/dev-server/).\n- Content-driven [navigation menu](https://www.11ty.dev/docs/plugins/navigation/)\n- [Image optimization](https://www.11ty.dev/docs/plugins/image/) via the `{% image %}` shortcode.\n  - Zero-JavaScript output.\n  - Support for modern image formats automatically (e.g. AVIF and WebP)\n  - Prefers `\u003cimg\u003e` markup if possible (single image format) but switches automatically to `\u003cpicture\u003e` for multiple image formats.\n  - Automated `\u003cpicture\u003e` syntax markup with `srcset` and optional `sizes`\n  - Includes `width`/`height` attributes to avoid [content layout shift](https://web.dev/cls/).\n  - Includes `loading=\"lazy\"` for native lazy loading without JavaScript.\n  - Includes [`decoding=\"async\"`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement/decoding)\n  - Images can be co-located with blog post files.\n  - View the [Image plugin source code](https://github.com/11ty/eleventy-base-blog/blob/main/eleventy.config.images.js)\n- Per page CSS bundles [via `eleventy-plugin-bundle`](https://github.com/11ty/eleventy-plugin-bundle).\n- Built-in [syntax highlighter](https://www.11ty.dev/docs/plugins/syntaxhighlight/) (zero-JavaScript output).\n- Blog Posts\n  - Draft posts: use `draft: true` to mark a blog post as a draft. Drafts are **only** included during `--serve`/`--watch` and are excluded from full builds. View the [Drafts plugin source code](https://github.com/11ty/eleventy-base-blog/blob/main/eleventy.config.drafts.js).\n  - Automated next/previous links\n  - Accessible deep links to headings\n- Generated Pages\n  - Home, Archive, and About pages.\n  - [Feeds for Atom and JSON](https://www.11ty.dev/docs/plugins/rss/)\n  - `sitemap.xml`\n  - Zero-maintenance tag pages ([View on the Demo](https://eleventy-base-blog.netlify.app/tags/))\n  - Content not found (404) page\n\n## Demos\n\n- [Netlify](https://eleventy-base-blog.netlify.com/)\n- [GitHub Pages](https://11ty.github.io/eleventy-base-blog/)\n- [Remix on Glitch](https://glitch.com/~11ty-eleventy-base-blog)\n\n## Deploy this to your own site\n\nDeploy this Eleventy site in just a few clicks on these services:\n\n- [Get your own Eleventy web site on Netlify](https://app.netlify.com/start/deploy?repository=https://github.com/11ty/eleventy-base-blog)\n- If you run Eleventy locally you can drag your `_site` folder to [`drop.netlify.com`](https://drop.netlify.com/) to upload it without using `git`.\n- [Get your own Eleventy web site on Vercel](https://vercel.com/import/project?template=11ty%2Feleventy-base-blog)\n- Read more about [Deploying an Eleventy project](https://www.11ty.dev/docs/deployment/) to the web.\n\n### Implementation Notes\n\n- `content/about/index.md` is an example of a content page.\n- `content/blog/` has the blog posts but really they can live in any directory. They need only the `posts` tag to be included in the blog posts [collection](https://www.11ty.dev/docs/collections/).\n- Use the `eleventyNavigation` key (via the [Eleventy Navigation plugin](https://www.11ty.dev/docs/plugins/navigation/)) in your front matter to add a template to the top level site navigation. This is in use on `content/index.njk` and `content/about/index.md`.\n- Content can be in _any template format_ (blog posts needn’t exclusively be markdown, for example). Configure your project’s supported templates in `eleventy.config.js` -\u003e `templateFormats`.\n- The `public` folder in your input directory will be copied to the output folder (via `addPassthroughCopy` in the `eleventy.config.js` file). This means `./public/css/*` will live at `./_site/css/*` after your build completes.\n- Provides two content feeds:\n  - `content/feed/feed.njk`\n  - `content/feed/json.njk`\n- This project uses three [Eleventy Layouts](https://www.11ty.dev/docs/layouts/):\n  - `_includes/layouts/base.njk`: the top level HTML structure\n  - `_includes/layouts/home.njk`: the home page template (wrapped into `base.njk`)\n  - `_includes/layouts/post.njk`: the blog post template (wrapped into `base.njk`)\n- `_includes/postslist.njk` is a Nunjucks include and is a reusable component used to display a list of all the posts. `content/index.njk` has an example of how to use it.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjquery%2Fplugins.jquery.com-static","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjquery%2Fplugins.jquery.com-static","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjquery%2Fplugins.jquery.com-static/lists"}