diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-09-29 13:32:52 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-09-29 13:49:35 +0200 |
commit | 4a2e92f753c8ac337cb30506e3d78acd78dc32b5 (patch) | |
tree | a6bd591ae9fbdf8d766c060caccc12429d950cae | |
parent | ae1c8c5555c66ac00c713167067d946e08652816 (diff) |
Added og meta tags
-rw-r--r-- | assets/favicon.ico | bin | 0 -> 4406 bytes | |||
-rw-r--r-- | t_idea/edit.html | 2 | ||||
-rw-r--r-- | t_idea/index.html | 6 |
3 files changed, 7 insertions, 1 deletions
diff --git a/assets/favicon.ico b/assets/favicon.ico Binary files differnew file mode 100644 index 0000000..15c6095 --- /dev/null +++ b/assets/favicon.ico diff --git a/t_idea/edit.html b/t_idea/edit.html index cae7bd2..28b4f12 100644 --- a/t_idea/edit.html +++ b/t_idea/edit.html @@ -3,6 +3,8 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta property="og:title" content="Editing '{{.Title}}'"/> + <meta property="og:image" content="/static/favicon.ico" /> <link rel="stylesheet" href="/static/main.css"> <title>Editing "{{.Title}}"</title> <style> diff --git a/t_idea/index.html b/t_idea/index.html index b219ba3..afd9787 100644 --- a/t_idea/index.html +++ b/t_idea/index.html @@ -1,9 +1,13 @@ <!DOCTYPE html> - <html lang="en"> +<html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta property="og:title" content="Ideez"/> + <meta property="og:description" content="Ideez is an app that you can storm with ideas, hoping to facilitate plans and brainstorms."/> + <meta property="og:image" content="/static/favicon.ico" /> <link rel="stylesheet" href="/static/main.css"> + <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> <title>Ideas</title> </head> |