diff options
author | Eden Attenborough <eddie.atten.ea29@gmail.com> | 2023-08-13 14:21:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-13 14:21:45 +0100 |
commit | f8c60754ac1f520ac028891837d78f673d225a1b (patch) | |
tree | 98d1a02e94096b82e187e588beb73dc9d9a219ef | |
parent | 9d717668408ed406ded81d0023c9be331ebab99f (diff) | |
parent | a4b5db21ad57197495ea65eef1daf55567707ca9 (diff) | |
download | boymoder.blog-f8c60754ac1f520ac028891837d78f673d225a1b.tar.gz boymoder.blog-f8c60754ac1f520ac028891837d78f673d225a1b.zip |
Merge pull request #5 from kira0x1/master
Add meta tags for embedding
-rwxr-xr-x | templates/template.html.j2 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/template.html.j2 b/templates/template.html.j2 index f80155d..23655bf 100755 --- a/templates/template.html.j2 +++ b/templates/template.html.j2 @@ -5,6 +5,11 @@ <link rel='stylesheet' href="{{url_for('static', filename='style.css')}}"> <link rel="shortcut icon" href="/img/greenboi.jpg?h=16&w=16"> <title>eda.gay :: {{title}}</title> + + <meta content="{{title}}" property="og:title" /> + # <meta content="Site Description" property="og:description" /> + <meta content="https://eda.gay" property="og:url" /> + <meta content="/img/greenboi.jpg?h=512&w=512" property="og:image" /> </head> <body> <div id=wrapper> |