Skip to content

Commit

Permalink
feat(#324): Add opengraph tags to website (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-wade committed Jul 28, 2023
1 parent 6f6f753 commit 5fcf101
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion packages/website/_includes/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@
title: Tybalt docs
---

<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Tybalt" />
<meta property="og:description" content="A framework for writing web components." />
<meta property="og:image" content="https://doug-wade.github.io/tybalt/img/favico.png" />

<title>{{ title }}</title>
<link rel="shortcut icon" type="image/png" href="img/favico.png" />
<link href="{{ '/css/base.css' | url }}" rel="stylesheet" />
Expand Down
5 changes: 4 additions & 1 deletion packages/website/index.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<!DOCTYPE html>
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Tybalt" />
<meta property="og:description" content="A framework for writing web components." />
<meta property="og:image" content="https://doug-wade.github.io/tybalt/img/favico.png" />
<title>Tybalt</title>
<link rel="shortcut icon" type="image/jpg" href="/img/favico.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
Expand Down

0 comments on commit 5fcf101

Please sign in to comment.