diff --git a/themes/future/layout/gallery.ejs b/themes/future/layout/gallery.ejs
index e239e060ab4..90df5c61e22 100644
--- a/themes/future/layout/gallery.ejs
+++ b/themes/future/layout/gallery.ejs
@@ -174,6 +174,13 @@
- <%- partial('_partial/post/date', {post: samplePost, class_name: 'archive-article-date', date_format: 'YYYY.MM.DD'}) %>
<%- post_author_link(samplePost) %>
+
+ - <%= char_count(samplePost) %>
+ <%# 実物(article.ejs)と同じく、集計値の無い記事は閲覧数の項目ごと出ない %>
+ <% const samplePV = get_ga4_pv(samplePost.path); %>
+ <% if (samplePV) { %>
+ - <%= samplePV %> View
+ <% } %>
<%- partial('_partial/post/tag', {post: samplePost}) %>