diff options
author | luxagraf <sng@luxagraf.net> | 2023-05-07 14:19:30 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-05-07 14:19:30 -0400 |
commit | bd1c1690f2c38c4aed538f9b3e43cdc103f72957 (patch) | |
tree | 43e669c1d6dc36bf9a0f71acbf00a537dc1c5cc8 /app | |
parent | ecf5763d392d63b7efe1fd4f906e11281f5438a2 (diff) |
media: template bug fix
Diffstat (limited to 'app')
-rw-r--r-- | app/posts/templates/posts/film_detail.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/app/posts/templates/posts/film_detail.html b/app/posts/templates/posts/film_detail.html index 19c55a0..1c25299 100644 --- a/app/posts/templates/posts/film_detail.html +++ b/app/posts/templates/posts/film_detail.html @@ -2,14 +2,6 @@ {% load typogrify_tags %} {% load get_image_by_size %} {%block htmlclass%}{%endblock%} -{% block extrahead %} -<style> -.video { - aspect-ratio: 16 / 9; - width: 100%; -} -</style> -{% endblock%} {% block sitename %} <head itemscope itemtype="http://schema.org/WebSite"> <title itemprop='name'>{{object.title|safe}} by Scott Gilbertson</title> @@ -17,6 +9,12 @@ {%block extrahead%} <link rel="canonical" href="https://luxagraf.net{{object.get_absolute_url}}" /> +<style> +.video { + aspect-ratio: 16 / 9; + width: 100%; +} +</style> {%endblock%} {%block bodyid%}id="home" class="friends"{%endblock%} {% block breadcrumbs %}<nav class="breadcrumbs" itemscope itemtype="http://schema.org/BreadcrumbList"> |