Created
October 20, 2020 06:12
-
-
Save nkirnos/0b8e6fe048223c46370e570def0ed3a8 to your computer and use it in GitHub Desktop.
11ty
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| 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