Warning, /epic.github.io/_includes/layouts/software.md is written in an unsupported language. File is not indexed.
0001 {% include layouts/title.md %}
0002
0003 {% assign items=site.data.software | where: "category", include.category %}
0004
0005 {% assign main=items | where: "type", "main" %}
0006 {% assign tutorials=items | where: "type", "tutorial" %}
0007
0008 {% if main.size>0 %}
0009 {% assign item=main[0] %}
0010 #### {{ item.full }}
0011 <table width="100%">
0012 {% include layouts/software_item.md what=item %}
0013 </table>
0014 {% endif %}
0015
0016
0017 {% if tutorials.size>0 %}
0018 #### Tutorials
0019 <table width="100%">
0020
0021 {% for tutorial in tutorials %}
0022 {% include layouts/software_item.md what=tutorial %}
0023 {% endfor %}
0024
0025 </table>
0026 {% endif %}