summaryrefslogtreecommitdiff
path: root/templates/post.html
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2025-04-14 12:45:28 -0400
committerAdam T. Carpenter <atc@53hor.net>2025-04-14 12:45:28 -0400
commit630003fff596f462d454a56223c02350d8b5543b (patch)
treef37b551ebf707378f55e99eec0cf07df8e759770 /templates/post.html
parenta473319831b04b3d935f36ae98ebd5a9e83d4d7b (diff)
downloadcarpentertutoring-630003fff596f462d454a56223c02350d8b5543b.tar.xz
carpentertutoring-630003fff596f462d454a56223c02350d8b5543b.zip
feat: per-post open graph tags
Diffstat (limited to 'templates/post.html')
-rw-r--r--templates/post.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/post.html b/templates/post.html
index 3155c7a..748288a 100644
--- a/templates/post.html
+++ b/templates/post.html
@@ -1,5 +1,16 @@
{% extends "base.html" %}
+{% block title %}
+{{ post.get_title() }} - Carpenter Tutoring, LLC
+{% endblock %}
+
+{% block og %}
+<meta name="description" content="{{ post.get_description() }}" />
+<meta property="og:description" content="{{ post.get_description() }}" />
+<meta property="og:title" content="{{ post.get_title() }}" />
+<meta property="og:url" content="https://carpentertutoring.com" />
+{% endblock %}
+
{% block main %}
<section class="banner">
<h1>{{ post.get_title() }}</h1>