Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1 KB

File metadata and controls

41 lines (28 loc) · 1 KB
layout default
title Articles
add_permalinks false

{% for p in site.pages %}

{% unless p.draft %}

{% if p.article %}

{% assign pubdate = p.article.published | date: "%Y-%m-%d" %} {% assign updated = p.article.updated | date: "%Y-%m-%d" %} {% assign author = site.data.authors[p.article.author] %}

{::options parse_block_html="true" /}

#### [{{ p.title }}]({{ p.url }})
{{author.full_name}}, {{p.article.published | date: "%B %Y"}} {% if p.article.updated %}(updated {{updated}}){% endif %}
{{p.article.description}}
{% endif %}

{% endunless %}

{% endfor %}

_Have an idea for an article? [Suggest it](https://github.com/Polymer/docs/issues/new)!_