77 lines
3.8 KiB
HTML
Raw Normal View History

2021-01-13 18:58:23 -05:00
<!--
* ____ __ ______
* /\ _`\ /\ \ /\__ _\ __
* \ \,\L\_\ \ \___ __ _ __ _____ _\/_/\ \/ _ __ ___ ___ /\_\ ___ ____
* \/_\__ \\ \ _ `\ /'__`\ /\`'__/\ '__`\ /'__`\\ \ \/\`'__/ __`\/' _ `\/\ \ /'___\ /',__\
* /\ \L\ \ \ \ \ \/\ \L\.\\ \ \/\ \ \L\ /\ __/ \ \ \ \ \/\ \L\ /\ \/\ \ \ \/\ \__//\__, `\
* \ `\____\ \_\ \_\ \__/.\_\ \_\ \ \ ,__\ \____\ \ \_\ \_\ \____\ \_\ \_\ \_\ \____\/\____/
* \/_____/\/_/\/_/\/__/\/_/\/_/ \ \ \/ \/____/ \/_/\/_/\/___/ \/_/\/_/\/_/\/____/\/___/
* \ \_\
* \/_/
2022-07-26 21:59:19 -04:00
Owner: @odinzu_me (Charles Sharpe)
2021-01-13 18:58:23 -05:00
Designer: @ajlkn, @csharpe_me
Developer: @ajlkn, @csharpe_me
2022-07-26 21:59:19 -04:00
Editor: @odinzu_me
Engineering: @odinzu_me
Quality Assurance: @odinzu_me
2021-01-13 18:58:23 -05:00
-->
<head>
<META charset="utf-8">
<META http-equiv="X-UA-Compatible" CONTENT="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<META NAME="robots" CONTENT="index, follow">
<META NAME="author" CONTENT="{{ site.data.global.author }}">
<META NAME="description" CONTENT="{{ site.data.global.description }}">
<META NAME="keywords" CONTENT="{{ site.data.global.keywords }}">
<!-- Geolocation Search Engine Optimization BING -->
<META NAME="geo.position" CONTENT="{{ site.data.global.location_coords }}" />
<META NAME="geo.placename" CONTENT="{{ site.data.global.location_town }}" />
<META NAME="geo.region" CONTENT="{{ site.data.global.location_state }}" />
<META NAME="ICBM" content="{{ site.data.global.location_coords }}" />
<!-- Standard SEO Twitter Card data -->
2022-11-02 21:41:00 -04:00
<META property="twitter:card" content="summary">
<META property="twitter:site" content="@{{ site.data.social.twitter_user }}">
<META property="twitter:title" content="{{ page.title }}">
<META property="twitter:description" content="{{ page.description }}">
<META property="twitter:creator" content="@{{ site.data.social.twitter_user }}">
2021-01-13 18:58:23 -05:00
2022-11-02 21:41:00 -04:00
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="{{ page.url }}">
<meta property="twitter:title" content="{{ page.title }}">
<meta property="twitter:description" content="{{ page.description }}">
<meta property="twitter:image" content="{{ page.image_url }}">
<meta property="twitter:creator" content="{{ page.author }}">
2021-01-13 18:58:23 -05:00
<!-- Standard SEO Open Graph data -->
<META property="og:title" content="{{ page.title }}" />
<META property="og:type" content="article" />
<META property="og:url" content="{{ page.url }}" />
<META property="og:image" content="{{ page.image_url }}" />
<META property="og:image" content="{{ page.image_alt }}" />
<META property="og:description" content="{{ site.data.global.description }}" />
<META property="og:site_name" content="{{ site.data.global.title }}" />
<META property="fb:admins" content="{{ site.data.social.facebook_admin_user }}" />
<!-- Favicons for various browsers including mobile -->
<link rel="icon" type="image/x-icon" href="/assets/icons/favicon.ico" sizes="64x49">
<!-- Jekyll RSS Feed Plugin -->
{%- feed_meta -%}
<!-- Site title goes here -->
<title> {{ site.data.global.title }} | {{ page.title }} </title>
<!-- Linking local cascading stylesheet CSS -->
<link rel="stylesheet" href="/assets/css/main.css" />
<!-- Loading local fonts ; preload for fast generation-->
<link rel="preload" href="/assets/webfonts/fa-regular-400.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<link rel="preload" href="/assets/webfonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<link rel="preload" href="/assets/webfonts/fa-solid-900.woff2" as="font" type="font/woff2" crossorigin="anonymous">
</head>