From 62ac72a60e3f627eddda5a7a0d204c04419f6aff Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Fri, 26 Jan 2024 05:54:36 -0800 Subject: [PATCH] up www --- .../docs/docs/introduction/api/install.md | 8 ++++++- .../docs/introduction/integration/config.md | 10 +++++++-- www/src/content/releases/v3/3_1_4.md | 2 +- www/src/content/releases/v3/3_1_5.md | 21 +++++++++++++++++++ 4 files changed, 37 insertions(+), 4 deletions(-) create mode 100644 www/src/content/releases/v3/3_1_5.md diff --git a/www/src/content/docs/docs/introduction/api/install.md b/www/src/content/docs/docs/introduction/api/install.md index 8a7b0ca5..40c6102b 100644 --- a/www/src/content/docs/docs/introduction/api/install.md +++ b/www/src/content/docs/docs/introduction/api/install.md @@ -29,6 +29,12 @@ import GhostCMS from '@matthiesenxyz/astro-ghostcms'; export default defineConfig({ site: "https://YOUR-DOMAIN-HERE.com", // THIS WILL DISABLE DEFAULT ROUTE INJECT - integrations: [ GhostCMS({ disableRouteInjection: true })], + integrations: [ + GhostCMS({ + // You can either set your ghostURL here or as a `.env`/environment variable + ghostURL: "https://ghostdemo.matthiesen.xyz", + disableRouteInjection: true, + }) + ], }); ``` \ No newline at end of file diff --git a/www/src/content/docs/docs/introduction/integration/config.md b/www/src/content/docs/docs/introduction/integration/config.md index c3bdcef6..3e2e980a 100644 --- a/www/src/content/docs/docs/introduction/integration/config.md +++ b/www/src/content/docs/docs/introduction/integration/config.md @@ -15,13 +15,19 @@ export default defineConfig({ site: "https://YOUR-DOMAIN-HERE.com", integrations: [ GhostCMS({ + // You can either set your ghostURL here or as a `.env`/environment variable + ghostURL: "https://ghostdemo.matthiesen.xyz", + // Disables default 404 page route + disable404: false, + // Disables default RSS page route and @astrojs/rss integration + disableRSS: false, // *OPTIONAL* THIS Option allows the user to disable default route // injections, disabling the default layout and theme all together. // Allowing the user to still use integration features while building // off of the included API functions - disableRouteInjection: false // DEFAULT VALUE + disableRouteInjection: false, // DEFAULT VALUE // *OPTIONAL* Setting this to true will disable the extra info logs - disableConsoleOutput: false // DEFAULT VALUE + disableConsoleOutput: false, // DEFAULT VALUE // *OPTIONAL* THIS IS THE DEFAULT VALUE theme: '@matthiesenxyz/astro-ghostcms-theme-default', // THIS IS TO SHOW SUPPORTED FEATURES FOR MORE INFO SEE diff --git a/www/src/content/releases/v3/3_1_4.md b/www/src/content/releases/v3/3_1_4.md index 10eefdd3..859b76d3 100644 --- a/www/src/content/releases/v3/3_1_4.md +++ b/www/src/content/releases/v3/3_1_4.md @@ -10,7 +10,7 @@ description: 'v3.1.4' # v3.1.4 -Implimented Testing suites, and a bunch off Code Cleanup +Implimented Testing suites, and a bunch of Code Cleanup ### New Stuff diff --git a/www/src/content/releases/v3/3_1_5.md b/www/src/content/releases/v3/3_1_5.md new file mode 100644 index 00000000..415aeca3 --- /dev/null +++ b/www/src/content/releases/v3/3_1_5.md @@ -0,0 +1,21 @@ +--- +title: 'v3.1.5' +date: '01-26-2024 05:50' +versionNumber: '3.1.5' +description: 'v3.1.5' +#image: +# src: '../../assets/starlog-placeholder-2.jpg' +# alt: 'The full Astro logo.' +--- + +# v3.1.5 + +Implimented More Tests, and a bunch of Code Cleanup, and some new config options! + +### New Stuff + +- New Config options! Check the docs! + +### Planned Additions + +- Skeleton Theme - DIY KIT \ No newline at end of file