Back to Lit

Articles Feed

packages/lit-dev-content/site/_includes/articles-feed.html

latest917 B
Original Source

{% extends 'articles.html' %} {% set sectionName = eleventyNavigation.key %} {% set children = collections[childrenTag] %}{% if sectionName == "Tags" %} {% set children = collections.article %} {% endif %} {% set children = children %} {% block articleContent %}

{% for child in children %} 1. [

{% if child.data.lastUpdated %} {{ child.data.lastUpdated | readableDate }} {% else %} {{ child.data.publishDate | readableDate }} {% endif %}

{{ child.data.title }}

{{ child.data.summary }}

{% for authorId in child.data.author or child.data.defaultAuthor %} {% set authorData = authors[authorId] %} {{ authorData.name }} {% endfor %}

]({{%20child.url%20|%20url%20}}) {% endfor %} {{ content | safe }} {% endblock %}