Skip to content

Commit 5bd71f3

Browse files
committed
Merge branch 'main' of https://github.com/11ty/11ty-website
2 parents 2eb67c2 + 17be569 commit 5bd71f3

3 files changed

Lines changed: 15 additions & 4 deletions

File tree

src/_data/starters/complite.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"url": "https://github.com/jcubic/complite",
3+
"name": "Complite",
4+
"description": "A complete, SEO/GEO/AI-ready Eleventy 3 blog starter. CSS-first dark mode, JSON-LD structured data, Open Graph, RSS, XML sitemap, llms.txt for AI agents, SQLite full-text search, PHP contact form with bot protection, Prism syntax highlighting, and content negotiation for markdown — zero client JS required.",
5+
"author": "jcubic",
6+
"demo": "https://complite.jcubic.pl"
7+
}

src/docs/collections-api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,13 +175,13 @@ export default function (eleventyConfig) {
175175
return collectionsApi.getFilteredByGlob("**/*.md");
176176
});
177177

178-
eleventyConfig.addCollection("posts", function (collectionApi) {
179-
return collectionApi.getFilteredByGlob("_posts/*.md");
178+
eleventyConfig.addCollection("posts", function (collectionsApi) {
179+
return collectionsApi.getFilteredByGlob("_posts/*.md");
180180
});
181181

182-
eleventyConfig.addCollection("posts", function (collectionApi) {
182+
eleventyConfig.addCollection("posts", function (collectionsApi) {
183183
// Also accepts an array of globs!
184-
return collectionApi.getFilteredByGlob(["posts/*.md", "notes/*.md"]);
184+
return collectionsApi.getFilteredByGlob(["posts/*.md", "notes/*.md"]);
185185
});
186186
};
187187
{% endset %}

src/docs/deployment.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ hosts:
4949
- name: CloudRay
5050
url: https://cloudray.io/articles/how-to-deploy-your-eleventy-website
5151
screenshotSize: medium
52+
- name: DeployHQ
53+
url: https://www.deployhq.com/
54+
screenshotSize: medium
55+
description: Git-based deployment platform that runs your Eleventy build on its servers and transfers the <code>_site/</code> output to your own server via SSH/SFTP/FTP (or to S3, Azure Blob, or Rackspace Cloud Files). Supports multiple environments with branch-to-server mapping, config-file injection, atomic releases, one-click rollback, and pre/post deploy hooks.
5256
classicHosts:
5357
- name: Vercel CLI
5458
url: https://vercel.com/cli

0 commit comments

Comments
 (0)