diff --git a/templates/categories/single.html b/templates/categories/single.html index a3d2159..2d0e1f5 100644 --- a/templates/categories/single.html +++ b/templates/categories/single.html @@ -47,6 +47,7 @@

+ {% if page.summary %} {{ page.summary | safe }} Read More @@ -54,6 +55,9 @@

+ {% else %} + {{ page.content | safe }} + {% endif %}

diff --git a/templates/section.html b/templates/section.html index 5a8a434..2d648e1 100644 --- a/templates/section.html +++ b/templates/section.html @@ -39,6 +39,7 @@

+ {% if page.summary %} {{ page.summary | safe }} Read More @@ -46,6 +47,9 @@

+ {% else %} + {{ page.content | safe }} + {% endif %}

diff --git a/templates/tags/single.html b/templates/tags/single.html index 3c89294..1d28eee 100644 --- a/templates/tags/single.html +++ b/templates/tags/single.html @@ -47,6 +47,7 @@

+ {% if page.summary %} {{ page.summary | safe }} Read More @@ -54,6 +55,9 @@

+ {% else %} + {{ page.content | safe }} + {% endif %}