0.1.1 seo

This commit is contained in:
Waylon Walker 2024-04-06 11:53:47 -05:00
parent f29c40d25e
commit 20f24fd688
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
3 changed files with 21 additions and 1 deletions

View file

@ -1,5 +1,9 @@
# HTMX-PATTERNS CHANGELOG
## 0.1.1
* feat seo
## 0.1.0
* feat boosted links

View file

@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2024-present Waylon S. Walker <waylon@waylonwalker.com>
#
# SPDX-License-Identifier: MIT
__version__ = "0.1.0"
__version__ = "0.1.1"

View file

@ -8,6 +8,22 @@
</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="og:title" name="og:title" content="HTMX Patterns from the hypermedia.systems book" />
<meta name="twitter:title" name="twitter:title" content="HTMX Patterns" />
<meta name="twitter:card" content="summary_large_image">
<meta name="og:image" name="og:image"
content="https://shots.wayl.one/shot/?url={{ request.url }}&height=1080&width=1920&scaled_width=1200&scaled_height=600&selectors=" />
<meta name="twitter:image" name="twitter:image"
content="https://shots.wayl.one/shot/?url={{ request.url }}&height=1080&width=1920&scaled_width=1280&scaled_height=640&selectors=" />
<meta name="og:image:height" content="640" />
<meta name="og:image:width" content="1280" />
<meta name="og:url" name="og:url" content="{{ request.url }}" />
<meta name="description" name="description" content="HTMX Patterns from the hypermedia.systems book" />
<meta name="og:description" name="Check if my kids can play outside"
content="HTMX Patterns from the hypermedia.systems book" />
<meta name="twitter:description" name="twitter:description"
content="HTMX Patterns from the hypermedia.systems book" />
<link rel="icon" type="image/x-icon" href="{{ url_for('favicon') }}" />
<link href="{{ url_for('app_css') }}" rel="stylesheet" />
<script src="{{ url_for('htmx') }}"></script>