0.1.1 seo
This commit is contained in:
parent
f29c40d25e
commit
20f24fd688
3 changed files with 21 additions and 1 deletions
|
|
@ -1,5 +1,9 @@
|
||||||
# HTMX-PATTERNS CHANGELOG
|
# HTMX-PATTERNS CHANGELOG
|
||||||
|
|
||||||
|
## 0.1.1
|
||||||
|
|
||||||
|
* feat seo
|
||||||
|
|
||||||
## 0.1.0
|
## 0.1.0
|
||||||
|
|
||||||
* feat boosted links
|
* feat boosted links
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# SPDX-FileCopyrightText: 2024-present Waylon S. Walker <waylon@waylonwalker.com>
|
# SPDX-FileCopyrightText: 2024-present Waylon S. Walker <waylon@waylonwalker.com>
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
__version__ = "0.1.0"
|
__version__ = "0.1.1"
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,22 @@
|
||||||
</title>
|
</title>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<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 rel="icon" type="image/x-icon" href="{{ url_for('favicon') }}" />
|
||||||
<link href="{{ url_for('app_css') }}" rel="stylesheet" />
|
<link href="{{ url_for('app_css') }}" rel="stylesheet" />
|
||||||
<script src="{{ url_for('htmx') }}"></script>
|
<script src="{{ url_for('htmx') }}"></script>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue