diff options
author | Jesús <heckyel@hyperbola.info> | 2022-10-05 10:29:23 +0800 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-10-05 10:29:23 +0800 |
commit | a19da4050c1bdabb60c5c248a8da2bf7ff869f9f (patch) | |
tree | da6ab5524a087a942aa1fc37ec07efc198e1d8cb /youtube/templates/local_playlist.html | |
parent | c524eb16e5fbe30dcd217fa8ba2ccd7acaaa2cf4 (diff) | |
download | yt-local-a19da4050c1bdabb60c5c248a8da2bf7ff869f9f.tar.lz yt-local-a19da4050c1bdabb60c5c248a8da2bf7ff869f9f.tar.xz yt-local-a19da4050c1bdabb60c5c248a8da2bf7ff869f9f.zip |
Fix self closing tag w3c issues
Diffstat (limited to 'youtube/templates/local_playlist.html')
-rw-r--r-- | youtube/templates/local_playlist.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube/templates/local_playlist.html b/youtube/templates/local_playlist.html index b29986a..3286f67 100644 --- a/youtube/templates/local_playlist.html +++ b/youtube/templates/local_playlist.html @@ -2,8 +2,8 @@ {% extends "base.html" %} {% import "common_elements.html" as common_elements %} {% block style %} - <link href="/youtube.com/static/message_box.css" rel="stylesheet"/> - <link href="/youtube.com/static/local_playlist.css" rel="stylesheet"/> + <link href="/youtube.com/static/message_box.css" rel="stylesheet"> + <link href="/youtube.com/static/local_playlist.css" rel="stylesheet"> {% endblock style %} {% block main %} |