diff options
author | hovertank3d <[email protected]> | 2025-01-17 16:16:52 +0100 |
---|---|---|
committer | hovertank3d <[email protected]> | 2025-01-17 16:16:52 +0100 |
commit | 13864f9405dbc57d6278b09354adfd3006878ebb (patch) | |
tree | 1c9f4251407ba02603a0af70f5d61c8e0101cf22 | |
parent | 4d45d8040926e262dee6c7ea11f83c22946db505 (diff) | |
download | lzcnt.space-13864f9405dbc57d6278b09354adfd3006878ebb.tar.xz lzcnt.space-13864f9405dbc57d6278b09354adfd3006878ebb.zip |
add og meta tags to index template
-rw-r--r-- | templates/index.html | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html index 89e78bf..2133457 100644 --- a/templates/index.html +++ b/templates/index.html @@ -2,9 +2,20 @@ <html> <head> <meta charset='utf-8'> + <meta name="description" content="log2({{.Requests}}) = {{.Log2lzcnt}}"> + <meta name="application-name" content="lzcnt.space"> + <meta name="author" content="iskrim"> + <meta content="website" property="og:type"> + <meta content="https://lzcnt.space" property="og:url"> + <meta content="LZCNT" property="og:site_name"> + <meta content="lzcnt %rdi, %rdi" property="og:title"> + <meta content="log2lzcnt({{.Requests}}) = {{.Log2lzcnt}}" property="og:description"> + <meta content="https://mastodon.goldencaramel.skin/system/media_attachments/files/113/844/350/154/991/661/original/8992eed7f2638496.jpg" property="og:image"> + <meta content="640" property="og:image:width"> + <meta content="640" property="og:image:height"> <meta http-equiv='X-UA-Compatible' content='IE=edge'> - <title>LZCNT</title> <meta name='viewport' content='width=device-width, initial-scale=1'> + <title>LZCNT</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css"> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script> <!--https://github.com/gondow/highlightjs-x86asmatt--> |