Compare commits

...

4 Commits

Author SHA1 Message Date
96d0ee8a03
Update images to use public CDN
Some checks failed
Deploy Hugo site to Pages / build (push) Failing after 32s
Deploy Hugo site to Pages / deploy (push) Has been skipped
2025-04-19 15:34:44 -04:00
23144f81fb
Make title dynamic 2025-04-19 15:27:51 -04:00
6ce469a894
Add twitter open graph tags 2025-04-19 15:25:01 -04:00
dede121f59
Add opengraph metadata 2025-04-19 15:20:18 -04:00
3 changed files with 22 additions and 2 deletions

1
.gitignore vendored
View File

@ -9,3 +9,4 @@
/resources/_gen/*
.hugo_build.lock
.idea/

BIN
static/img/profile.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -13,7 +13,26 @@
{{ if .Param "math" }}
{{ partialCached "math.html" . }}
{{ end }}
<
<meta name="description" content="Software Engineer, aspiring polymath"/>
<meta property="og:title" content="{{ if .Title }}{{ .Title }}{{ else }}Tylers Perkins - Software Engineer{{ end }}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="{{ .Permalink }}" />
<meta property="og:image" content="https://opengraph.b-cdn.net/production/images/d8998659-0129-4808-b73c-67797d3fe7ac.jpg?token=X4ji3MDnTCq9oofsKJXYRPV4nIaynTNQmWu0UpE8vaE&height=460&width=460&expires=33281091161">
<meta property="og:description" content="Software Engineer, aspiring polymath" />
<meta property="og:site_name" content="Tylers Perkins" />
<meta property="og:locale" content="en_US" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="{{ if .Title }}{{ .Title }}{{ else }}Tylers Perkins - Software Engineer{{ end }}" />
<meta property="twitter:description" content="Software Engineer, aspiring polymath" />
<meta name="twitter:image" content="https://opengraph.b-cdn.net/production/images/d8998659-0129-4808-b73c-67797d3fe7ac.jpg?token=X4ji3MDnTCq9oofsKJXYRPV4nIaynTNQmWu0UpE8vaE&height=460&width=460&expires=33281091161">
<meta property="twitter:image:alt" content="Tylers Perkins Profile Picture">
<meta property="twitter:url" content="{{ .Permalink }}" />
<title>Tylers Perkins - Software Engineer</title>
</head>
</head>