Skip to content

Instantly share code, notes, and snippets.

@nkirnos
Created October 20, 2020 06:12
Show Gist options
  • Select an option

  • Save nkirnos/0b8e6fe048223c46370e570def0ed3a8 to your computer and use it in GitHub Desktop.

Select an option

Save nkirnos/0b8e6fe048223c46370e570def0ed3a8 to your computer and use it in GitHub Desktop.
11ty
---
templateEngineOverride: njk
---
<!doctype html>
<html>
<head>
<title>{{page.title}}</title>
</head>
<body>
{% for news_item in page.news%}
{% if loop.index <= news_count %}
<p>{{loop.index}} - {{news_item.title}} </p>
{%else%}
<p>{{news_item.title}} </p>
{% endif%}
{% endfor%}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment