---js
{"layout": "page.njk",
"permalink": "index.html",
"eleventyExcludeFromCollections": true,
"eleventyComputed": {
"metaDesc": "{{ metadata.subtitle }}",
"pageTitle": "{{ metadata.title | safe }}",
"previousPage": d => Math.ceil((d.collections.all.length-1)/5) }}
---
{{ pageTitle }}
{% set post = collections.all.slice(-1)[0] -%}
{%- set postDate = post.date.toISOString().slice(0,10) %}
{%- if post.data.heroImg %}
{%- endif %}
{{ post.templateContent | fixAnchors(post.url) | safe }}
{%- if post.data.tags %}
{% for tag in post.data.tags %}
#{{ tag }}{% endfor %}
{% endif %}
{%- if collections.all.length > 1 %}
{% endif -%}