From 64dd814f2d126b41df743824c3fd41c89efd5e18 Mon Sep 17 00:00:00 2001 From: Vaclav Elias Date: Thu, 12 Oct 2023 10:13:56 +0100 Subject: [PATCH 1/3] Update faq.html - Meta description added --- faq.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/faq.html b/faq.html index a730ce04..56c97853 100644 --- a/faq.html +++ b/faq.html @@ -2,6 +2,7 @@ layout: default title: FAQ permalink: /faq/ +description: Explore the frequently asked questions on Stride Game Engine covering system requirements, platform support, features, licensing, and more to get started with your game development journey. tags: search banner: title: FAQ @@ -133,4 +134,4 @@

Disclaimer

- \ No newline at end of file + From de41045a8e80865b722b577deba8b0845e75435d Mon Sep 17 00:00:00 2001 From: Vaclav Elias Date: Tue, 17 Oct 2023 21:02:18 +0100 Subject: [PATCH 2/3] chore: NPM bumped --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 32da2a7e..50360ed1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,7 +15,7 @@ "lunr": "^2.3.9", "markdown-it-anchor": "^8.6.6", "markdown-it-table-of-contents": "^0.6.0", - "sass": "^1.69.0" + "sass": "^1.69.3" }, "devDependencies": { "@11ty/eleventy": "^2.0.1", @@ -2279,9 +2279,9 @@ } }, "node_modules/sass": { - "version": "1.69.0", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.69.0.tgz", - "integrity": "sha512-l3bbFpfTOGgQZCLU/gvm1lbsQ5mC/WnLz3djL2v4WCJBDrWm58PO+jgngcGRNnKUh6wSsdm50YaovTqskZ0xDQ==", + "version": "1.69.3", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.69.3.tgz", + "integrity": "sha512-X99+a2iGdXkdWn1akFPs0ZmelUzyAQfvqYc2P/MPTrJRuIRoTffGzT9W9nFqG00S+c8hXzVmgxhUuHFdrwxkhQ==", "dependencies": { "chokidar": ">=3.0.0 <4.0.0", "immutable": "^4.0.0", diff --git a/package.json b/package.json index 30e8bcaa..b342cf20 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,6 @@ "lunr": "^2.3.9", "markdown-it-anchor": "^8.6.6", "markdown-it-table-of-contents": "^0.6.0", - "sass": "^1.69.0" + "sass": "^1.69.3" } } From 6a6181ed4b9f741d1cd5f478d541659c3fc86437 Mon Sep 17 00:00:00 2001 From: Vaclav Elias Date: Tue, 17 Oct 2023 21:04:17 +0100 Subject: [PATCH 3/3] feat: Recent blog posts template added to home page --- _includes/blog-home.html | 20 ++++++++++++++++++++ index.html | 1 + 2 files changed, 21 insertions(+) create mode 100644 _includes/blog-home.html diff --git a/_includes/blog-home.html b/_includes/blog-home.html new file mode 100644 index 00000000..0a73ecaa --- /dev/null +++ b/_includes/blog-home.html @@ -0,0 +1,20 @@ +
+ {% assign latestPosts = collections.blog | reverse %} + {% for post in latestPosts limit:3 %} +
+
+
+
{{ post.data.title }}
+
+ {%- include post/day.html date:post.date -%} +
+ {%- if post.data.excerpt -%}{{ post.data.excerpt | md }}{%- else -%} + {{ post.data.page.excerpt | md }}{%- endif -%} +
+
+ Read more +
+
+
+ {% endfor %} +
\ No newline at end of file diff --git a/index.html b/index.html index 6a15bd59..f24e8051 100644 --- a/index.html +++ b/index.html @@ -153,4 +153,5 @@

Our Featured Sponsors

+ {% include blog-home.html %}