| 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 }})
{{p.article.description}}
{% endif %}
{{author.full_name}}, {{p.article.published | date: "%B %Y"}}
{% if p.article.updated %}(updated {{updated}}){% endif %}
{% endunless %}
{% endfor %}
_Have an idea for an article? [Suggest it](https://github.com/Polymer/docs/issues/new)!_