Skip to content

Commit

Permalink
Merge pull request #31 from jazzominy/chore/seo-meta-tags
Browse files Browse the repository at this point in the history
seo tags
  • Loading branch information
jazzominy authored Nov 23, 2024
2 parents 4127e96 + 9e1d234 commit 859e32e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 2 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
author: "Jasmine Hirpara"
url: "https://jazzominy.dev"
permalink: /:year/:month/:day/:title/
defaults:
- scope:
Expand Down
10 changes: 8 additions & 2 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Jasmine Hirpara's personal website.">
<meta name="author" content="Jasmine Hirpara">
<meta name="author" content="{{ site.author }}">
<meta name="description" content="{{ page.excerpt }}">
<meta property="og:description" content="{{ page.excerpt }}">
<meta property="og:url" content="{{ site.url }}{{ page.url }}">
<meta property="og:title" content="{{ page.title }}">
<meta property="og:type" content="article">
<meta property="article:published_time" content="{{ page.date }}">
<link rel="canonical" href="{{ site.url }}{{ page.url }}">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css">
<style>
Expand Down

0 comments on commit 859e32e

Please sign in to comment.