Skip to content

Commit

Permalink
add meta tags to page.njk (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
t-var-s authored Oct 23, 2023
1 parent 8e73e2c commit 7b4ee18
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docs/_includes/page.njk
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ title: Robot
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
<meta name="title" content="{{ title }}" />
<meta name="description" content="With Robot you can build finite state machines in a simple and flexible way." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://thisrobot.life/" />
<meta property="og:title" content="{{ title }}" />
<meta property="og:description" content="With Robot you can build finite state machines in a simple and flexible way." />
<meta property="og:image" content="https://thisrobot.life/images/robot-mono.png" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://thisrobot.life/" />
<meta property="twitter:title" content="{{ title }}" />
<meta property="twitter:description" content="With Robot you can build finite state machines in a simple and flexible way." />
<meta property="twitter:image" content="https://thisrobot.life/images/robot-mono.png" />
<link rel="stylesheet" href="{{ '/styles/main.css' | relUrl(page.url) }}">
<link rel="stylesheet" href="{{ '/styles/prism-xonokai.css' | relUrl(page.url) }}">
<link rel="apple-touch-icon" sizes="180x180" href="{{ '/images/apple-touch-icon.png' | relUrl(page.url) }}">
Expand Down Expand Up @@ -48,4 +60,4 @@ title: Robot
</div>
</main>

{% include 'footer.njk' %}
{% include 'footer.njk' %}

0 comments on commit 7b4ee18

Please sign in to comment.