Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 681 Bytes

build_issue_article.md

File metadata and controls

23 lines (18 loc) · 681 Bytes

{% assign name = page.name %} {% assign cat = include.category %} {% assign section = include.section %} {% assign edit = page.hidden %}

{% assign cat_posts = ((site.[name] | where:"category", cat | sort:"date" | reverse %}

{% if cat_posts.size > 0 and cat != "letter" %}

{{ section }}

{% endif %}

{% for page in cat_posts %} {% unless page.hidden or page.index %}

{{ page.title }}

{: #{{ page.title | slugify }}} {{ page.content | markdownify }} {% if page.author %} This article is provided by {{ page.author }} {% if edit %}[# View source...](https://github.com/modelica/newsletter/blob/master/{{ page.path }}){% endif %} {% endif %}

{% endunless %} {% endfor %}