Skip to content

Commit

Permalink
Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
hakanensari committed Nov 21, 2024
1 parent eeff120 commit 4a99431
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 15 deletions.
3 changes: 2 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
exclude:
- CNAME
- Gemfile*
url: "https://lineofflig.ht"
title: Line of Flight
url: https://lineofflig.ht
32 changes: 21 additions & 11 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,32 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="{{ page.description }}" />
<meta property="og:title" content="Line of Flight" />
<meta property="og:title" content="{{ site.title }} | {{ page.title }}" />

<!-- Open Graph tags -->
<meta property="og:description" content="{{ page.description }}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="{{ site.url }}{{ page.url }}" />
<meta
property="og:image"
content="{{ site.url }}/line-of-flight-1200x630.jpg"
content="{{ site.url }}/line-of-flight-1200x630.jpg?v={{ site.time | date: '%s' }}"
/>
<meta property="og:url" content="{{ site.url }}{{ page.url }}" />
<meta
name="twitter:card"
content="{{ site.url }}/line-of-flight-1200x630.jpg"
<meta property="og:site_name" content="{{ site.title }}" />

<link rel="icon" href="/favicon.ico?v={{ site.time | date: '%s' }}" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png?v={{ site.time | date: '%s' }}"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png?v={{ site.time | date: '%s' }}"
/>
<link rel="icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<title>Line of Flight | {{ page.title }}</title>
<title>{{ site.title }} | {{ page.title }}</title>
<link rel="stylesheet" href="https://fonts.xz.style/serve/inter.css" />
<link
rel="stylesheet"
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
---

<img
src="/line-of-flight.gif"
src="/line-of-flight.gif?v={{ site.time | date: '%s' }}"
alt="quirky character with purple hair, colorful outfit, and friendly smile"
/>
<p>New things</p>
Expand Down
4 changes: 2 additions & 2 deletions join/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
layout: default
title: Join
description: Reach out to [email protected].
description: "Reach out: [email protected]"
---

<img
src="../line-of-flight.gif"
src="../line-of-flight.gif?v={{ site.time | date: '%s' }}"
alt="quirky character with purple hair, colorful outfit, and friendly smile"
/>

Expand Down

0 comments on commit 4a99431

Please sign in to comment.