all the seo

This commit is contained in:
Tommy Parnell
2019-01-21 00:50:08 -05:00
parent 58409485e6
commit e48d260733
7 changed files with 59 additions and 15 deletions

View File

@@ -16,3 +16,6 @@
}
</cache>
@section Head {
<partial name="StockMeta" />
}

View File

@@ -9,4 +9,16 @@
@section Head {
<meta name="description" content="@Model.SummaryPlain" />
<meta property="og:type" content="blog">
<meta property="og:title" content="@Model.Title">
<meta property="og:url" content="https://blog.terribledev.io/Visualizing-your-react-redux-performance-bottlenecks/index.html">
<meta property="og:site_name" content="The Ramblings of TerribleDev">
<meta property="og:description" content="@Model.SummaryPlain">
<meta property="og:updated_time" content="2019-01-20T15:07:51.000Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="@Model.Title">
<meta name="twitter:description" content="@Model.SummaryPlain">
<meta name="twitter:image" content="https://blog.terribledev.io/1.png">
<meta name="twitter:creator" content="@@TerribleDev">
<meta property="og:image" content="https://www.gravatar.com/avatar/333e3cea32cd17ff2007d131df336061?s=640" />
}

View File

@@ -0,0 +1,15 @@
@{
Layout = null;
}
<link rel="preconnect" href="https://www.google-analytics.com">
<link rel="preconnect" href="https://stats.g.doubleclick.net">
<link rel="preconnect" href="https://www.googletagmanager.com">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-48128396-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-48128396-1');
</script>

View File

@@ -0,0 +1,11 @@
<meta name="description" content="My name is Tommy Parnell. I usually go by TerribleDev on the internets. These are just some of my writings and rants about the software space." />
<meta property="og:type" content="blog">
<meta property="og:title" content="The Ramblings of TerribleDev">
<meta property="og:url" content="https://blog.terribledev.io/index.html">
<meta property="og:site_name" content="The Ramblings of TerribleDev">
<meta property="og:description" content="My name is Tommy Parnell. I usually go by TerribleDev on the internets. These are just some of my writings and rants about the software space.">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="The Ramblings of TerribleDev">
<meta name="twitter:description" content="My name is Tommy Parnell. I usually go by TerribleDev on the internets. These are just some of my writings and rants about the software space.">
<meta name="twitter:creator" content="@@TerribleDev">
<meta property="og:image" content="https://www.gravatar.com/avatar/333e3cea32cd17ff2007d131df336061?s=640" />

View File

@@ -1,19 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<partial name="Gtm" />
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
<meta name="author" content="Tommy &quot;TerribleDev&quot; Parnell" />
<meta name="theme-color" content="#4A4A4A" />
<link rel="alternate" type="application/atom+xml" title="RSS" href="/rss.xml" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="alternate" type="application/atom+xml" title="RSS" href="/rss.xml">
<link rel="manifest" href="~/manifest.json" asp-append-version="true">
<link asp-append-version="true" rel="icon" href="~/favicon.ico" />
<title>@ViewData["Title"] - The Ramblings of TerribleDev</title>
<environment names="Development">
<link asp-append-version="true" rel="stylesheet" href="~/css/site.css" />
</environment>
<environment names="Production">
<link asp-append-version="true" rel="stylesheet" href="~/css/site.min.css"/>
<link asp-append-version="true" rel="stylesheet" href="~/css/site.min.css" />
</environment>
@RenderSection("Head", false)
</head>

View File

@@ -46,7 +46,7 @@ body {
padding-bottom: 1.2em;
}
.main-content-wrap.headerBump {
padding-top: 55px;
padding-top: 3.5rem;
padding-right: 1.2em;
padding-left: 1.2em;
padding-bottom: 1.2em;
@@ -89,12 +89,12 @@ code, pre {
}
a {
color: #6fa1c2;
color: #00558d;
font-weight: 400;
}
a:visited {
color: #9c9c9c;
color: #6c6c6c;
}
.btn {
@@ -193,10 +193,10 @@ a {
align-items: center;
justify-content: center;
width: 100%;
height: 55px;
height: 3.5rem;
top: 0;
border: 1px solid #eef2f8;
color: #88909a;
color: #4A4A4A;
background-color: white;
z-index: 20;
padding: 0;

View File

@@ -4,18 +4,18 @@
"name": "The Ramblings of TerribleDev",
"scope": "/",
"display": "browser",
"start_url": "https://blog.terribledev.io/",
"short_name": "The Ramblings of a TerribleDev",
"theme_color": "transparent",
"start_url": "https://blog2.terribledev.io/",
"short_name": "TerribleDev's blog",
"theme_color": "#4A4A4A",
"background_color": "#FFF",
"description": "My name is Tommy Parnell. I usually go by TerribleDev on the internets. These are just some of my writings and rants about the software space.",
"orientation": "any",
"background_color": "transparent",
"related_applications": [],
"prefer_related_applications": false,
"icons": [
{
"src": "/content/favicon.ico",
"sizes": "16x16"
}
{
"src": "/content/favicon.ico",
"sizes": "any"
}
]
}
}