-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix embed titles and descriptions for blog posts
- Loading branch information
1 parent
00f21c0
commit 1502603
Showing
12 changed files
with
110 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
layout: default | ||
sitemap: | ||
lastmod: 2021-03-09 09:00:00 | ||
lastmod: 2022-04-25 12:00:00 | ||
--- | ||
|
||
<div class="row"> | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,60 @@ | ||
--- | ||
layout: default | ||
--- | ||
<div class="row"> | ||
<div class="box"> | ||
<h2>{{ page.title }}</h2><hr /> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta name='description' content="{{ page.excerpt }}"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>{{ page.title }} | Nickolas Gupton</title> | ||
|
||
<link rel="stylesheet" href="/assets/css/main.css"> | ||
<script src="/assets/js/main.js" defer></script> | ||
|
||
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="194x194" href="/favicons/favicon-194x194.png"> | ||
<link rel="icon" type="image/png" sizes="192x192" href="/favicons/android-chrome-192x192.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png"> | ||
<link rel="manifest" href="/favicons/site.webmanifest"> | ||
<link rel="mask-icon" href="/favicons/safari-pinned-tab.svg" color="#454d6a"> | ||
<link rel="shortcut icon" href="/favicons/favicon.ico"> | ||
<meta name="apple-mobile-web-app-title" content="Nickolas Gupton"> | ||
<meta name="application-name" content="Nickolas Gupton"> | ||
<meta name="msapplication-TileColor" content="#454d6a"> | ||
<meta name="msapplication-TileImage" content="/favicons/mstile-144x144.png"> | ||
<meta name="msapplication-config" content="/favicons/browserconfig.xml"> | ||
<meta name="theme-color" content="#454d6a"> | ||
</head> | ||
|
||
{% if page.image %} | ||
<img src="{{ page.image }}" alt="{{ page.title }}" class="blogImage"> | ||
{% endif %} | ||
|
||
<div> | ||
<p>{{ page.date | date: "%B %-d, %Y" }}</p> | ||
<body> | ||
<h1 style="display:none;">{{ page.title }}</h1> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="box"> | ||
<h2>{{ page.title }}</h2><hr /> | ||
|
||
{% if page.image %} | ||
<img src="{{ page.image }}" alt="{{ page.title }}" class="blogImage"> | ||
{% endif %} | ||
|
||
<div> | ||
<p>{{ page.date | date: "%B %-d, %Y" }}</p> | ||
|
||
{{ content }} | ||
|
||
<hr /> | ||
<script src="https://utteranc.es/client.js" | ||
repo="CorruptComputer/home" | ||
issue-term="url" | ||
label="Blog Comments" | ||
theme="github-dark" | ||
crossorigin="anonymous" | ||
async> | ||
</script> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
{% include navbar.html %} | ||
|
||
{{ content }} | ||
|
||
<hr /> | ||
<script src="https://utteranc.es/client.js" | ||
repo="CorruptComputer/home" | ||
issue-term="url" | ||
label="Blog Comments" | ||
theme="github-dark" | ||
crossorigin="anonymous" | ||
async> | ||
</script> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
_posts/2021-03-05-remove-steam-games-from-control-panel.markdown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
_posts/2021-05-10-bypass-windows-login-with-sticky-keys.markdown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters