diff options
author | Jesús <heckyel@hyperbola.info> | 2021-01-01 14:52:24 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-01-01 14:52:24 -0500 |
commit | 3e817298bbbc5d75dbdfe4b26e1d854dfbc56195 (patch) | |
tree | a64b5d9a7480b0b90d1abe3e963b1dd6488ec706 /youtube/templates | |
parent | 5a6e247a7fb989aa9516b6acf4a93e0ce69921c5 (diff) | |
download | yt-local-3e817298bbbc5d75dbdfe4b26e1d854dfbc56195.tar.lz yt-local-3e817298bbbc5d75dbdfe4b26e1d854dfbc56195.tar.xz yt-local-3e817298bbbc5d75dbdfe4b26e1d854dfbc56195.zip |
General theme: fix HTML syntax
Diffstat (limited to 'youtube/templates')
-rw-r--r-- | youtube/templates/common_elements.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/templates/common_elements.html b/youtube/templates/common_elements.html index 56ad727..9c5abe6 100644 --- a/youtube/templates/common_elements.html +++ b/youtube/templates/common_elements.html @@ -51,7 +51,7 @@ <div>{{ info['video_count']|commatize }} videos</div> {% else %} {% if info.get('time_published') %} - <time>{{ info['time_published'] }}</time> + <span>{{ info['time_published'] }}</span> {% endif %} {% if info.get('approx_view_count') %} <div class="views">{{ info['approx_view_count'] }} views</div> |