diff options
38 files changed, 1500 insertions, 449 deletions
diff --git a/_includes/footer.html b/_includes/footer.html index 127167c..7941567 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -3,3 +3,18 @@ </footer> <!-- <script src="./index.js"></script> --> + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script>
\ No newline at end of file diff --git a/_includes/head.html b/_includes/head.html index 7d13b36..69d3c41 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -2,11 +2,27 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head>
\ No newline at end of file + </head>
\ No newline at end of file diff --git a/_includes/nav.html b/_includes/nav.html index ebbb712..cc297e4 100644 --- a/_includes/nav.html +++ b/_includes/nav.html @@ -1,8 +1,8 @@ <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> diff --git a/_layouts/blog.html b/_layouts/blog.html index 07064ea..fb2afa0 100644 --- a/_layouts/blog.html +++ b/_layouts/blog.html @@ -4,7 +4,7 @@ {% include nav.html %} <ul class="posts"> {% for post in site.posts %} - <li><span>{{ post.date | date_to_long_string }}</span> <a href="{{ post.url | prepend: site.baseurl}}.html" title="{{ post.title }}">{{ post.title }}</a></li> + <li><span>{{ post.date | date_to_long_string }}</span> <a href="{{ post.url | prepend: site.baseurl}}" title="{{ post.title }}">{{ post.title }}</a></li> {% endfor %} </ul> </div> diff --git a/_site/about.html b/_site/about.html index 01ada13..53f3134 100644 --- a/_site/about.html +++ b/_site/about.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -48,6 +64,20 @@ platforms. Going from WordPress to Jekyll to Ghost and now back to Jekyll.</p> </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog.html b/_site/blog.html index eeb1841..b47dfd2 100644 --- a/_site/blog.html +++ b/_site/blog.html @@ -4,91 +4,121 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> <ul class="posts"> - <li><span>12 June 2023</span> <a href="/blog/down-with-big-tech.html" title="Down With Big Tech!">Down With Big Tech!</a></li> + <li><span>12 June 2023</span> <a href="/blog/down-with-big-tech" title="Down With Big Tech!">Down With Big Tech!</a></li> - <li><span>04 April 2023</span> <a href="/blog/passbolt-initial-impressions.html" title="Passbolt Initial Impressions">Passbolt Initial Impressions</a></li> + <li><span>04 April 2023</span> <a href="/blog/passbolt-initial-impressions" title="Passbolt Initial Impressions">Passbolt Initial Impressions</a></li> - <li><span>28 December 2022</span> <a href="/blog/daily-note-taking.html" title="Daily Note Taking">Daily Note Taking</a></li> + <li><span>28 December 2022</span> <a href="/blog/daily-note-taking" title="Daily Note Taking">Daily Note Taking</a></li> - <li><span>28 December 2022</span> <a href="/blog/better-call-saul-breaking-bad-walter-white-jesse-pinkman.html" title="Better Caul Saul's Breaking Episode is a Fun Romp">Better Caul Saul's Breaking Episode is a Fun Romp</a></li> + <li><span>28 December 2022</span> <a href="/blog/better-call-saul-breaking-bad-walter-white-jesse-pinkman" title="Better Caul Saul's Breaking Episode is a Fun Romp">Better Caul Saul's Breaking Episode is a Fun Romp</a></li> - <li><span>09 July 2022</span> <a href="/blog/starting-ccna-study.html" title="Starting CCNA Study">Starting CCNA Study</a></li> + <li><span>09 July 2022</span> <a href="/blog/starting-ccna-study" title="Starting CCNA Study">Starting CCNA Study</a></li> - <li><span>14 April 2022</span> <a href="/blog/migrating-from-robinhood-to-public.html" title="Migrating from RobinHood to Public">Migrating from RobinHood to Public</a></li> + <li><span>14 April 2022</span> <a href="/blog/migrating-from-robinhood-to-public" title="Migrating from RobinHood to Public">Migrating from RobinHood to Public</a></li> - <li><span>02 March 2022</span> <a href="/blog/welcome-to-jekyll.html" title="Welcome to Jekyll">Welcome to Jekyll</a></li> + <li><span>02 March 2022</span> <a href="/blog/welcome-to-jekyll" title="Welcome to Jekyll">Welcome to Jekyll</a></li> - <li><span>04 June 2018</span> <a href="/blog/apple-wwdc-june-2018.html" title="Apple WWDC 2018">Apple WWDC 2018</a></li> + <li><span>04 June 2018</span> <a href="/blog/apple-wwdc-june-2018" title="Apple WWDC 2018">Apple WWDC 2018</a></li> - <li><span>22 March 2018</span> <a href="/blog/share-only-what-you-want-out-there.html" title="Share Only What You Want Out There">Share Only What You Want Out There</a></li> + <li><span>22 March 2018</span> <a href="/blog/share-only-what-you-want-out-there" title="Share Only What You Want Out There">Share Only What You Want Out There</a></li> - <li><span>14 February 2018</span> <a href="/blog/about-sub-4-sub.html" title="Let's Talk About Sub4Sub">Let's Talk About Sub4Sub</a></li> + <li><span>14 February 2018</span> <a href="/blog/about-sub-4-sub" title="Let's Talk About Sub4Sub">Let's Talk About Sub4Sub</a></li> - <li><span>15 January 2018</span> <a href="/blog/the-sims-4-laundry-day.html" title="The Simes 4 Laundry Day">The Simes 4 Laundry Day</a></li> + <li><span>15 January 2018</span> <a href="/blog/the-sims-4-laundry-day" title="The Simes 4 Laundry Day">The Simes 4 Laundry Day</a></li> - <li><span>12 January 2018</span> <a href="/blog/read-more.html" title="Read More.">Read More.</a></li> + <li><span>12 January 2018</span> <a href="/blog/read-more" title="Read More.">Read More.</a></li> - <li><span>09 November 2017</span> <a href="/blog/national-novel-writing-month.html" title="National Novel Writing Month">National Novel Writing Month</a></li> + <li><span>09 November 2017</span> <a href="/blog/national-novel-writing-month" title="National Novel Writing Month">National Novel Writing Month</a></li> - <li><span>17 July 2017</span> <a href="/blog/5-reasons-to-upload-your-resume-to-google-drive/.html" title="5 Reasons To Upload Your Resume To Google Drive">5 Reasons To Upload Your Resume To Google Drive</a></li> + <li><span>17 July 2017</span> <a href="/blog/5-reasons-to-upload-your-resume-to-google-drive/" title="5 Reasons To Upload Your Resume To Google Drive">5 Reasons To Upload Your Resume To Google Drive</a></li> - <li><span>14 July 2017</span> <a href="/blog/using-font-awesome-in-2017/.html" title="Using Font Awesome In 2017">Using Font Awesome In 2017</a></li> + <li><span>14 July 2017</span> <a href="/blog/using-font-awesome-in-2017/" title="Using Font Awesome In 2017">Using Font Awesome In 2017</a></li> - <li><span>24 April 2017</span> <a href="/blog/working-online-and-where-to-start/.html" title="Working Online and Where To Start">Working Online and Where To Start</a></li> + <li><span>24 April 2017</span> <a href="/blog/working-online-and-where-to-start/" title="Working Online and Where To Start">Working Online and Where To Start</a></li> - <li><span>18 March 2017</span> <a href="/blog/the-red-pill/.html" title="My Thoughts on The Red Pill Documentary">My Thoughts on The Red Pill Documentary</a></li> + <li><span>18 March 2017</span> <a href="/blog/the-red-pill/" title="My Thoughts on The Red Pill Documentary">My Thoughts on The Red Pill Documentary</a></li> - <li><span>22 January 2017</span> <a href="/blog/changes-in-2017/.html" title="Changes in 2017">Changes in 2017</a></li> + <li><span>22 January 2017</span> <a href="/blog/changes-in-2017/" title="Changes in 2017">Changes in 2017</a></li> - <li><span>24 October 2016</span> <a href="/blog/who-am-i-voting-for/.html" title="Who Am I Voting For?">Who Am I Voting For?</a></li> + <li><span>24 October 2016</span> <a href="/blog/who-am-i-voting-for/" title="Who Am I Voting For?">Who Am I Voting For?</a></li> - <li><span>19 June 2016</span> <a href="/blog/going-live-with-git/.html" title="Going Live With Git">Going Live With Git</a></li> + <li><span>19 June 2016</span> <a href="/blog/going-live-with-git/" title="Going Live With Git">Going Live With Git</a></li> - <li><span>06 June 2016</span> <a href="/blog/back-to-jekyll/.html" title="Back To Jekyll">Back To Jekyll</a></li> + <li><span>06 June 2016</span> <a href="/blog/back-to-jekyll/" title="Back To Jekyll">Back To Jekyll</a></li> - <li><span>02 June 2016</span> <a href="/blog/thoughts-on-pokemon-sun-and-pokemon-moon/.html" title="Thoughts on: Pokemon Sun & Moon New Trailer">Thoughts on: Pokemon Sun & Moon New Trailer</a></li> + <li><span>02 June 2016</span> <a href="/blog/thoughts-on-pokemon-sun-and-pokemon-moon/" title="Thoughts on: Pokemon Sun & Moon New Trailer">Thoughts on: Pokemon Sun & Moon New Trailer</a></li> - <li><span>02 June 2016</span> <a href="/blog/thoughts-on-dollar-photo-club-shutting/.html" title="Thoughts On Dollar Photo Club Shutting Down">Thoughts On Dollar Photo Club Shutting Down</a></li> + <li><span>02 June 2016</span> <a href="/blog/thoughts-on-dollar-photo-club-shutting/" title="Thoughts On Dollar Photo Club Shutting Down">Thoughts On Dollar Photo Club Shutting Down</a></li> - <li><span>11 March 2016</span> <a href="/blog/writing-excercise/.html" title="Writing Exercise">Writing Exercise</a></li> + <li><span>11 March 2016</span> <a href="/blog/writing-excercise/" title="Writing Exercise">Writing Exercise</a></li> - <li><span>11 March 2016</span> <a href="/blog/on-going-development-plus-update/.html" title="On Going Development + Update">On Going Development + Update</a></li> + <li><span>11 March 2016</span> <a href="/blog/on-going-development-plus-update/" title="On Going Development + Update">On Going Development + Update</a></li> - <li><span>25 August 2015</span> <a href="/blog/keyframes-are-fun/.html" title="Keyframes Are Fun">Keyframes Are Fun</a></li> + <li><span>25 August 2015</span> <a href="/blog/keyframes-are-fun/" title="Keyframes Are Fun">Keyframes Are Fun</a></li> - <li><span>16 August 2015</span> <a href="/blog/dragon-con-blog-update/.html" title="Dragon Con + Blog Update">Dragon Con + Blog Update</a></li> + <li><span>16 August 2015</span> <a href="/blog/dragon-con-blog-update/" title="Dragon Con + Blog Update">Dragon Con + Blog Update</a></li> - <li><span>14 August 2015</span> <a href="/blog/at-long-last/.html" title="At Long Last">At Long Last</a></li> + <li><span>14 August 2015</span> <a href="/blog/at-long-last/" title="At Long Last">At Long Last</a></li> - </ul> + </ul> </div> <footer> <small>© Ben Sanders, 2025</small> </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/5-reasons-to-upload-your-resume-to-google-drive/index.html b/_site/blog/5-reasons-to-upload-your-resume-to-google-drive/index.html index fdd252d..d556bd6 100644 --- a/_site/blog/5-reasons-to-upload-your-resume-to-google-drive/index.html +++ b/_site/blog/5-reasons-to-upload-your-resume-to-google-drive/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -55,6 +71,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/about-sub-4-sub.html b/_site/blog/about-sub-4-sub.html index 360a6e6..cd4f861 100644 --- a/_site/blog/about-sub-4-sub.html +++ b/_site/blog/about-sub-4-sub.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -48,6 +64,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/apple-wwdc-june-2018.html b/_site/blog/apple-wwdc-june-2018.html index 83ce9c3..53b84d9 100644 --- a/_site/blog/apple-wwdc-june-2018.html +++ b/_site/blog/apple-wwdc-june-2018.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -80,6 +96,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/at-long-last/index.html b/_site/blog/at-long-last/index.html index 9eedeea..4514253 100644 --- a/_site/blog/at-long-last/index.html +++ b/_site/blog/at-long-last/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -36,6 +52,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/back-to-jekyll/index.html b/_site/blog/back-to-jekyll/index.html index c1be2b6..0821e15 100644 --- a/_site/blog/back-to-jekyll/index.html +++ b/_site/blog/back-to-jekyll/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -42,6 +58,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/better-call-saul-breaking-bad-walter-white-jesse-pinkman.html b/_site/blog/better-call-saul-breaking-bad-walter-white-jesse-pinkman.html index c9cd73d..741fe70 100644 --- a/_site/blog/better-call-saul-breaking-bad-walter-white-jesse-pinkman.html +++ b/_site/blog/better-call-saul-breaking-bad-walter-white-jesse-pinkman.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -50,6 +66,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/changes-in-2017/index.html b/_site/blog/changes-in-2017/index.html index 9907437..66946fb 100644 --- a/_site/blog/changes-in-2017/index.html +++ b/_site/blog/changes-in-2017/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -50,6 +66,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/daily-note-taking.html b/_site/blog/daily-note-taking.html index 8b128aa..da28dcb 100644 --- a/_site/blog/daily-note-taking.html +++ b/_site/blog/daily-note-taking.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -54,6 +70,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/down-with-big-tech.html b/_site/blog/down-with-big-tech.html index 1261207..7c5c55c 100644 --- a/_site/blog/down-with-big-tech.html +++ b/_site/blog/down-with-big-tech.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -44,6 +60,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/dragon-con-blog-update/index.html b/_site/blog/dragon-con-blog-update/index.html index 01c2243..c9f3047 100644 --- a/_site/blog/dragon-con-blog-update/index.html +++ b/_site/blog/dragon-con-blog-update/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -38,6 +54,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/going-live-with-git/index.html b/_site/blog/going-live-with-git/index.html index 886d611..bf9d503 100644 --- a/_site/blog/going-live-with-git/index.html +++ b/_site/blog/going-live-with-git/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -50,6 +66,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/keyframes-are-fun/index.html b/_site/blog/keyframes-are-fun/index.html index 530c9af..0d65be7 100644 --- a/_site/blog/keyframes-are-fun/index.html +++ b/_site/blog/keyframes-are-fun/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -44,6 +60,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/migrating-from-robinhood-to-public.html b/_site/blog/migrating-from-robinhood-to-public.html index abeb44a..c7f3181 100644 --- a/_site/blog/migrating-from-robinhood-to-public.html +++ b/_site/blog/migrating-from-robinhood-to-public.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -54,6 +70,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/national-novel-writing-month.html b/_site/blog/national-novel-writing-month.html index f8017e2..2e41a78 100644 --- a/_site/blog/national-novel-writing-month.html +++ b/_site/blog/national-novel-writing-month.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -48,6 +64,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/on-going-development-plus-update/index.html b/_site/blog/on-going-development-plus-update/index.html index 754904f..8689224 100644 --- a/_site/blog/on-going-development-plus-update/index.html +++ b/_site/blog/on-going-development-plus-update/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -38,6 +54,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/passbolt-initial-impressions.html b/_site/blog/passbolt-initial-impressions.html index ab6bb76..d147667 100644 --- a/_site/blog/passbolt-initial-impressions.html +++ b/_site/blog/passbolt-initial-impressions.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -117,6 +133,20 @@ MariaDB <span class="o">[(</span>none<span class="o">)]></span> show database </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/read-more.html b/_site/blog/read-more.html index e80d42d..fd78adf 100644 --- a/_site/blog/read-more.html +++ b/_site/blog/read-more.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -72,6 +88,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/share-only-what-you-want-out-there.html b/_site/blog/share-only-what-you-want-out-there.html index aaa1659..0f10322 100644 --- a/_site/blog/share-only-what-you-want-out-there.html +++ b/_site/blog/share-only-what-you-want-out-there.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -46,6 +62,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/starting-ccna-study.html b/_site/blog/starting-ccna-study.html index d98c0d3..d6ae3fb 100644 --- a/_site/blog/starting-ccna-study.html +++ b/_site/blog/starting-ccna-study.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -50,6 +66,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/the-red-pill/index.html b/_site/blog/the-red-pill/index.html index 9479f09..79327dc 100644 --- a/_site/blog/the-red-pill/index.html +++ b/_site/blog/the-red-pill/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -52,6 +68,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/the-sims-4-laundry-day.html b/_site/blog/the-sims-4-laundry-day.html index 1d4aba2..cad7e75 100644 --- a/_site/blog/the-sims-4-laundry-day.html +++ b/_site/blog/the-sims-4-laundry-day.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -48,6 +64,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/thoughts-on-dollar-photo-club-shutting/index.html b/_site/blog/thoughts-on-dollar-photo-club-shutting/index.html index c1c4914..9c52e91 100644 --- a/_site/blog/thoughts-on-dollar-photo-club-shutting/index.html +++ b/_site/blog/thoughts-on-dollar-photo-club-shutting/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -40,6 +56,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/thoughts-on-pokemon-sun-and-pokemon-moon/index.html b/_site/blog/thoughts-on-pokemon-sun-and-pokemon-moon/index.html index 43f495b..29eba38 100644 --- a/_site/blog/thoughts-on-pokemon-sun-and-pokemon-moon/index.html +++ b/_site/blog/thoughts-on-pokemon-sun-and-pokemon-moon/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -42,6 +58,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/using-font-awesome-in-2017/index.html b/_site/blog/using-font-awesome-in-2017/index.html index 5afc944..56b4ef4 100644 --- a/_site/blog/using-font-awesome-in-2017/index.html +++ b/_site/blog/using-font-awesome-in-2017/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -51,6 +67,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/welcome-to-jekyll.html b/_site/blog/welcome-to-jekyll.html index f151e96..9d67a7e 100644 --- a/_site/blog/welcome-to-jekyll.html +++ b/_site/blog/welcome-to-jekyll.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -36,6 +52,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/who-am-i-voting-for/index.html b/_site/blog/who-am-i-voting-for/index.html index 10ed35a..2113cdc 100644 --- a/_site/blog/who-am-i-voting-for/index.html +++ b/_site/blog/who-am-i-voting-for/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -40,6 +56,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/working-online-and-where-to-start/index.html b/_site/blog/working-online-and-where-to-start/index.html index 368928b..036ee59 100644 --- a/_site/blog/working-online-and-where-to-start/index.html +++ b/_site/blog/working-online-and-where-to-start/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -46,6 +62,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/blog/writing-excercise/index.html b/_site/blog/writing-excercise/index.html index 4d10428..0d427ae 100644 --- a/_site/blog/writing-excercise/index.html +++ b/_site/blog/writing-excercise/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -40,6 +56,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/index.html b/_site/index.html index c127522..e2041b6 100644 --- a/_site/index.html +++ b/_site/index.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -33,6 +49,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/resources.html b/_site/resources.html index ac31d00..4414010 100644 --- a/_site/resources.html +++ b/_site/resources.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -49,6 +65,20 @@ I have been cutting back on my use of social media. The best way to keep up with </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/resume.html b/_site/resume.html index e009d77..b462b31 100644 --- a/_site/resume.html +++ b/_site/resume.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -118,6 +134,20 @@ AAS Networking Specialist (2016-2019)</p> </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> diff --git a/_site/smtpd.html b/_site/smtpd.html index c127522..e2041b6 100644 --- a/_site/smtpd.html +++ b/_site/smtpd.html @@ -4,23 +4,39 @@ <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta content="Ben's Corner of the Web" property="og:title"> - <meta content="Ben is a GNU/Linux nerd and these are his links" property="og:description"> - <meta content="https://ben.sanders.life" property="og:url"> - <meta content="https://bsand.net/assets/me.jpeg" property="og:image"> - <meta content="#b172bc" data-react-helmet="true" name="theme-color"> + + <!-- SEO Meta Tags --> + <title>Ben Sanders – Network Administrator, Linux Enthusiast, Web Developer, and Technologist</title> + <meta name="description" content="Ben Sanders is a Linux enthusiast and web developer sharing projects, thoughts, and resources on technology, open source, and simple web hosting."> + <meta name="keywords" content="Ben Sanders, Linux, web development, open source, technologist, Sanders Technology, ben.sanders.life"> + <meta name="author" content="Ben Sanders"> + + <!-- Open Graph / Facebook --> + <meta property="og:title" content="Ben Sanders – Linux Nerd & Technologist"> + <meta property="og:description" content="Explore the online presence of Ben Sanders – a Linux enthusiast and web developer sharing thoughts, projects, and resources."> + <meta property="og:url" content="https://ben.sanders.life"> + <meta property="og:image" content="https://bsand.net/assets/me.jpeg"> + <meta property="og:type" content="website"> + + <!-- Twitter Card --> + <meta name="twitter:card" content="summary_large_image"> + <meta name="twitter:title" content="Ben Sanders – Linux Nerd & Web Developer"> + <meta name="twitter:description" content="Visit the personal site of Ben Sanders to explore tech, open source, and minimalist web design."> + <meta name="twitter:image" content="https://bsand.net/assets/me.jpeg"> + + <!-- UI and Theme --> + <meta name="theme-color" content="#b172bc"> <link rel="stylesheet" href="/main.css"> - <title>Ben's Website</title> -</head> + </head> <body> <div id="website-container"> <ul class="navigation"> <li><a href="/" title="home">~/</a></li> - <li><a href="/about.html" title="about me">~/about</a></li> - <li><a href="/resume.html" title="my resume">~/resume</a></li> - <li><a href="/blog.html" title="my blog">~/blog</a></li> - <li><a href="/resources.html" title="resources">~/resources</a></li> + <li><a href="/about" title="about me">~/about</a></li> + <li><a href="/resume" title="my resume">~/resume</a></li> + <li><a href="/blog" title="my blog">~/blog</a></li> + <li><a href="/resources" title="resources">~/resources</a></li> </ul> @@ -33,6 +49,20 @@ </footer> <!-- <script src="./index.js"></script> --> - + <script type="application/ld+json"> + { + "@context": "https://schema.org", + "@type": "Person", + "name": "Ben Sanders", + "url": "https://ben.sanders.life", + "image": "https://bsand.net/assets/me.jpeg", + "sameAs": [ + "https://github.com/bensanders", + "https://linkedin.com/in/benasanders", + "https://twitter.com/thebensanders" + ], + "jobTitle": "Web Developer & Linux Enthusiast" + } + </script> </body> </html> |
