aboutsummaryrefslogtreecommitdiffstats
path: root/libretube-theme/templates/article.html
diff options
context:
space:
mode:
Diffstat (limited to 'libretube-theme/templates/article.html')
-rw-r--r--libretube-theme/templates/article.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/libretube-theme/templates/article.html b/libretube-theme/templates/article.html
index 47c7d1c..8063ab0 100644
--- a/libretube-theme/templates/article.html
+++ b/libretube-theme/templates/article.html
@@ -30,7 +30,7 @@
{% endif %}
{% endif %}
<!-- Article Image -->
- {% set article_image = "%s/%s/../wp-content/uploads/article/poster/%s" % (SITEURL, THEME_STATIC_DIR, article.image) %}
+ {% set article_image = "%s/%s/../wp-content/uploads/article/thumbnail/%s" % (SITEURL, THEME_STATIC_DIR, article.image) %}
<!-- Meta Article -->
<meta name="author" content="{{ article.author }}"/>
<meta name="description" content="{{ seo_description|striptags }}"/>
@@ -227,7 +227,7 @@
</div> <!-- End Mask / Hover -->
{% if article.image %}
- <img src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/../wp-content/uploads/article/poster/{{ article.image }}" alt="{{ article.title }}" class="img-fluid">
+ <img src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/../wp-content/uploads/article/thumbnail/{{ article.image }}" alt="{{ article.title }}" class="img-fluid">
{% else %}
<img src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/video.png" alt="video" class="img-fluid">
{% endif %}