Warning, /epic.github.io/_includes/layouts/table.md is written in an unsupported language. File is not indexed.
0001 {% if include.width %}
0002 {% assign width=include.width %}
0003 {% else %}
0004 {% assign width='100%' %}
0005 {% endif %}
0006
0007 <table border="1" width="{{ width }}">
0008 {% assign headers = include.headers | split: ", " %}
0009 <tr>
0010 {% for header in headers %}
0011 <th>{{ site.tablepadding }}{{ header }}</th>
0012 {% endfor %}
0013 </tr>
0014 {% for row in include.rows %}
0015 <tr>
0016 {% assign columns = row | split: ", " %}
0017 {% for item in columns %}
0018 <td>{{ site.tablepadding }}{{ item }}</td>
0019 {% endfor %}
0020 </tr>
0021 {% endfor %}
0022
0023 </table>