diff --git a/templates/shortcodes/video.html b/templates/shortcodes/video.html index 9ce6f5d..afdac38 100644 --- a/templates/shortcodes/video.html +++ b/templates/shortcodes/video.html @@ -1,4 +1,9 @@ -{% if title %}
{{ title }}
{% endif %} -{% if author %}
{{ author }}
{% endif %} -{% if date %}
{{ date }}
{% endif %} +{% if title or year and author %} +
+ {% if title %}{{ title }}{% endif %} + {% if author and year %} + ({{ year }}, {{ author }}) + {% endif %} +
+{% endif %}