diff --git a/templates/index.html b/templates/index.html
index 5359356..b71613f 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -65,7 +65,11 @@
{%- for page in show_pages %}
{{ post_macros::header(page=page) }}
- {{ post_macros::content(page=page, summary=true) }}
+ {%- if config.extra.show_only_description %}
+ {{ page.description}}
+ {% else %}
+ {{ post_macros::content(page=page, summary=true) }}
+ {% endif -%}
{% endfor -%}