diff options
author | luxagraf <sng@luxagraf.net> | 2023-05-07 14:17:05 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-05-07 14:17:05 -0400 |
commit | ecf5763d392d63b7efe1fd4f906e11281f5438a2 (patch) | |
tree | 6ad1ce99dd43577a192f35a5d8bf9d552c4664b4 /app/posts | |
parent | 9bb9db0bf8e82b5fc2b09b8cf58454a2d6240929 (diff) |
media: fixed upload bug even though it doesn't work
Diffstat (limited to 'app/posts')
-rw-r--r-- | app/posts/templates/posts/film_detail.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/posts/templates/posts/film_detail.html b/app/posts/templates/posts/film_detail.html index 390eb3c..19c55a0 100644 --- a/app/posts/templates/posts/film_detail.html +++ b/app/posts/templates/posts/film_detail.html @@ -2,6 +2,14 @@ {% 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> |