diff --git a/src/_includes/main/changelogs-list.njk b/src/_includes/main/changelogs-list.njk index 73da18d3..a8b51689 100644 --- a/src/_includes/main/changelogs-list.njk +++ b/src/_includes/main/changelogs-list.njk @@ -3,5 +3,5 @@ {{ log.date | formatDate }} {% endheadingAnchor %} - {{ log.templateContent | safe }} + {{ log.content | safe }} {%- endfor %} diff --git a/src/_includes/main/links.njk b/src/_includes/main/links.njk index 8725ab0a..e35184aa 100644 --- a/src/_includes/main/links.njk +++ b/src/_includes/main/links.njk @@ -32,11 +32,11 @@ isContentDivided: true {% if group.data.toc %}

Table of Contents

- {{ group.templateContent | toc | safe }} + {{ group.content | toc | safe }}
{% endif %} - {{ group.templateContent | safe }} + {{ group.content | safe }} {% if group.data.updated %}

(This {{ group.data.title }} list was last updated on )

diff --git a/src/index.njk b/src/index.njk index c4e878b7..1646465c 100644 --- a/src/index.njk +++ b/src/index.njk @@ -53,7 +53,7 @@ eleventyComputed:
{% for log in collections["changelogs"] | reverse | itemLimit(1) %}

{{ log.data.title }}

- {{ log.templateContent | safe }} + {{ log.content | safe }} {%- endfor %}

View all site changelogs

diff --git a/src/slashes/footerlinks/changelogs.njk b/src/slashes/footerlinks/changelogs.njk index e41a91e7..e7c0c291 100644 --- a/src/slashes/footerlinks/changelogs.njk +++ b/src/slashes/footerlinks/changelogs.njk @@ -17,7 +17,7 @@ eleventyNavigation:

Latest Changelogs

{% for log in changelogs %}

- {{ log.templateContent | safe }} + {{ log.content | safe }} {%- endfor %} {% include "global/pagination-oldnew.njk" %}