add important meta tags

This commit is contained in:
insects 2025-02-07 15:45:55 +01:00
parent 77a7516e95
commit 5f56784a3a

View file

@ -14,8 +14,14 @@ pub fn layout(content: Markup) -> Markup {
(DOCTYPE) (DOCTYPE)
html { html {
head { head {
title { "beacon" } title { "Beacon" }
meta name="viewport" content="width=device-width"; meta name="viewport" content="width=device-width";
meta charset="utf-8";
meta name="description" content="A big fish tracker for FFXIV.";
meta name="author" content="the insects institute";
meta property="og:url" content="https://fish.insects.institute";
meta property="og:title" content="Beacon";
meta property="og:description" content="A big fish tracker for FFXIV.";
link rel="stylesheet" href="/static/style.css"; link rel="stylesheet" href="/static/style.css";
script src="/static/htmx.js" {} script src="/static/htmx.js" {}
} }