From cb192289eeecccb750f613b993dc3f366446d4f2 Mon Sep 17 00:00:00 2001 From: Benjamin Sanders Date: Fri, 4 Jul 2025 19:47:35 -0400 Subject: Initial Commit --- _config.yml | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 _config.yml (limited to '_config.yml') diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..1851830 --- /dev/null +++ b/_config.yml @@ -0,0 +1,70 @@ +# Site settings +title: Sanders Technology Group +description: "Web design and technology agency serving Northeast Georgia with beautiful, effective websites and technology solutions." +url: "https://sanderstechnologygroup.com" # Replace with your production domain +baseurl: "" # If deploying to a subdirectory, set it here (e.g. "/blog") + +# Author information +author: + name: "Sanders Technology Group" + email: "sales@sanderstg.com" + +# Build settings +markdown: kramdown +# theme: my-theme # Replace with your theme name if using a custom gem-based theme +plugins: + - jekyll-feed + - jekyll-seo-tag + - jekyll-sitemap + +# Collections +collections: + posts: + output: true + +# Defaults for posts +defaults: + - scope: + path: "" + type: "posts" + values: + layout: "post" + author: "Sanders Technology Group" + +# Exclude files from build +exclude: + - Gemfile + - Gemfile.lock + - node_modules + - vendor/bundle/ + - vendor/cache/ + - vendor/gems/ + - vendor/ruby/ + +# Permalinks +permalink: /:categories/:title/ + +# SEO and feed settings +seo: + title: Sanders Technology Group + description: "Web design and technology agency serving Northeast Georgia with beautiful, effective websites and technology solutions." + url: "https://sanderstg.com" + twitter: + username: your_twitter_username # Optional if you want Twitter cards + +# Sitemap settings +sitemap: + exclude: + - /assets/ + +# Plugins configuration +jekyll-feed: + path: feed.xml + +# Build options +incremental: false + +# Deployment settings (optional if deploying via GitHub Pages or Netlify) +# For example, for GitHub Pages: +# github: +# is_project_page: false -- cgit v1.2.3