summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Sanders <ben@Benjamins-MacBook-Pro.local>2025-10-16 18:02:37 -0400
committerBenjamin Sanders <ben@Benjamins-MacBook-Pro.local>2025-10-16 18:02:37 -0400
commit1ccc6f5a5eaa69496c6c2abdd3e1cf13206e6f1a (patch)
tree5deadcd628bf21c7c5ba202a01cbb0557d106781
parent86c784235321db30a07cd799cc179a115dfffa33 (diff)
initial commit
-rw-r--r--_site/assets/css/main.css1
-rw-r--r--_site/feed.xml2
-rw-r--r--_site/index.html2
-rw-r--r--_site/jekyll-nginx.sh83
-rw-r--r--assets/css/main.css1
-rw-r--r--index.html2
6 files changed, 3 insertions, 88 deletions
diff --git a/_site/assets/css/main.css b/_site/assets/css/main.css
index fa230ed..7d4962e 100644
--- a/_site/assets/css/main.css
+++ b/_site/assets/css/main.css
@@ -178,7 +178,6 @@ img.logo {
#Blog {
max-width: 800px;
- width: 100%;
margin: 30px auto;
padding: 0 20px;
}
diff --git a/_site/feed.xml b/_site/feed.xml
index 795205b..91bf32c 100644
--- a/_site/feed.xml
+++ b/_site/feed.xml
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2025-07-08T19:13:19-04:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">Sanders Technology Group</title><subtitle>Web design and technology agency serving Northeast Georgia with beautiful, effective websites and technology solutions.</subtitle><author><name>Sanders Technology Group</name><email>sales@sanderstg.com</email></author><entry><title type="html">Happy Fourth of July</title><link href="http://localhost:4000/happy-4th-july/" rel="alternate" type="text/html" title="Happy Fourth of July" /><published>2025-07-04T00:00:00-04:00</published><updated>2025-07-04T00:00:00-04:00</updated><id>http://localhost:4000/happy-4th-july</id><content type="html" xml:base="http://localhost:4000/happy-4th-july/"><![CDATA[<p>Happy Fourth of July from Your Friendly Neighborhood IT Shop!</p>
+<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2025-10-16T17:47:35-04:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">Sanders Technology Group</title><subtitle>Web design and technology agency serving Northeast Georgia with beautiful, effective websites and technology solutions.</subtitle><author><name>Sanders Technology Group</name><email>sales@sanderstg.com</email></author><entry><title type="html">Happy Fourth of July</title><link href="http://localhost:4000/happy-4th-july/" rel="alternate" type="text/html" title="Happy Fourth of July" /><published>2025-07-04T00:00:00-04:00</published><updated>2025-07-04T00:00:00-04:00</updated><id>http://localhost:4000/happy-4th-july</id><content type="html" xml:base="http://localhost:4000/happy-4th-july/"><![CDATA[<p>Happy Fourth of July from Your Friendly Neighborhood IT Shop!</p>
<p>This post marks a special occasion for us – not just because it’s Independence Day, but also because it’s the launch of our newly designed website! We’re excited to welcome you to this fresh online space that we’ve built with speed, ease of use, and clarity in mind.</p>
diff --git a/_site/index.html b/_site/index.html
index cc8eaab..d122ca9 100644
--- a/_site/index.html
+++ b/_site/index.html
@@ -87,7 +87,7 @@
</div>
<div id="contact">
<h2>Contact Us</h2>
- <p>The best way to contact us is using the 'Get a FREE Consultation' link at thet op of this page.</p>
+ <p>The best way to contact us is using the 'Get a FREE Consultation' link at thet of of this page.</p>
</div>
</div>
diff --git a/_site/jekyll-nginx.sh b/_site/jekyll-nginx.sh
deleted file mode 100644
index 634449d..0000000
--- a/_site/jekyll-nginx.sh
+++ /dev/null
@@ -1,83 +0,0 @@
-#!/bin/bash
-
-# Exit on errors
-set -e
-
-# Variables
-USER_HOME="/data"
-SITE_NAME="stg-jekyll"
-BARE_REPO="$USER_HOME/repos/$SITE_NAME.git"
-SITE_DIR="$USER_HOME/sites/$SITE_NAME"
-PUBLIC_DIR="$SITE_DIR/html"
-DOMAIN="sanderstechnologygroup.com"
-NGINX_CONF="/etc/nginx/sites-available/$DOMAIN.conf"
-
-# Update and install dependencies
-sudo apt update
-sudo apt install -y ruby-full build-essential zlib1g-dev git nginx
-
-# Setup Ruby environment in .bashrc if not already present
-if ! grep -q 'export GEM_HOME' "$USER_HOME/.bashrc"; then
- echo 'export GEM_HOME="$HOME/gems"' >> "$USER_HOME/.bashrc"
- echo 'export PATH="$HOME/gems/bin:$PATH"' >> "$USER_HOME/.bashrc"
-fi
-
-# Load environment
-export GEM_HOME="$USER_HOME/gems"
-export PATH="$USER_HOME/gems/bin:$PATH"
-
-# Install Jekyll and Bundler
-gem install jekyll bundler
-
-# Create directories
-mkdir -p "$BARE_REPO" "$SITE_DIR" "$PUBLIC_DIR"
-
-# Setup Git bare repo
-cd "$BARE_REPO"
-git init --bare
-
-# Create post-receive hook
-cat > hooks/post-receive <<EOF
-#!/bin/bash
-TARGET_DIR="$SITE_DIR"
-PUBLIC_DIR="$PUBLIC_DIR"
-
-export GEM_HOME="$USER_HOME/gems"
-export PATH="$USER_HOME/gems/bin:$PATH"
-
-GIT_WORK_TREE="\$TARGET_DIR" git checkout -f
-
-cd "\$TARGET_DIR"
-bundle install --path vendor/bundle
-bundle exec jekyll build -d "\$PUBLIC_DIR"
-EOF
-
-chmod +x hooks/post-receive
-
-# Adjust permissions for NGINX access
-chmod o+x "$USER_HOME"
-chmod -R o+rX "$PUBLIC_DIR"
-
-# Create NGINX config
-sudo tee "$NGINX_CONF" > /dev/null <<EOF
-server {
- listen 80;
- server_name $DOMAIN;
-
- root $PUBLIC_DIR;
- index index.html;
-
- location / {
- try_files \$uri \$uri.html \$uri/ =404;
- }
-}
-EOF
-
-# Enable NGINX site
-sudo ln -s "$NGINX_CONF" /etc/nginx/sites-enabled/
-
-# Test and reload NGINX
-sudo nginx -t && sudo systemctl reload nginx
-
-echo "✅ Jekyll site deployment setup complete."
-echo "➡️ Push your site with: git remote add live ssh://ben@64.42.180.156/$BARE_REPO && git push live master"
diff --git a/assets/css/main.css b/assets/css/main.css
index fa230ed..7d4962e 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -178,7 +178,6 @@ img.logo {
#Blog {
max-width: 800px;
- width: 100%;
margin: 30px auto;
padding: 0 20px;
}
diff --git a/index.html b/index.html
index 057868b..10adb68 100644
--- a/index.html
+++ b/index.html
@@ -67,6 +67,6 @@ title: Home
</div>
<div id="contact">
<h2>Contact Us</h2>
- <p>The best way to contact us is using the 'Get a FREE Consultation' link at thet op of this page.</p>
+ <p>The best way to contact us is using the 'Get a FREE Consultation' link at thet of of this page.</p>
</div>
</div>