From 6c6c0dc078cbd50ea8f809b29687e426b67ebc35 Mon Sep 17 00:00:00 2001 From: Scott Rubin Date: Sun, 24 Sep 2023 00:30:43 +0000 Subject: [PATCH] Add opengraph metadata to show detail page --- shows/templates/shows/show_detail.html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/shows/templates/shows/show_detail.html b/shows/templates/shows/show_detail.html index d0cb94d..d3f6743 100644 --- a/shows/templates/shows/show_detail.html +++ b/shows/templates/shows/show_detail.html @@ -1,5 +1,14 @@ {% extends "base.html" %} {% block title %}{{ show.title }}{% endblock title %} +{% block opengraphextra %} + + {% if show.description %} + + {% endif %} + {% if show.logo %} + + {% endif %} +{% endblock opengraphextra %} {% block extrahead %} {% comment "TODO" %}