Back to home page

EIC code displayed by LXR

 
 

    


Warning, /epic.github.io/_includes/layouts/big_table.md is written in an unsupported language. File is not indexed.

0001 {% if include.table.width %}
0002 {% assign width=include.table.width %}
0003 {% else %}
0004 {% assign width='100%' %}
0005 {% endif %}
0006 
0007 <table border="1" width="{{ width }}">
0008   {% if include.table.columns %}
0009   {% for col in include.table.columns %}
0010   <col width="{{ col }}"/>
0011   {% endfor %}
0012   {% endif %}
0013   
0014   <tr>
0015     {% for header in include.table.headers %}
0016     <th>{{ site.tablepadding }}{{ header }}</th>
0017     {% endfor %}
0018   </tr>
0019   {% for row in include.table.rows %}
0020   <tr>
0021     {% for item in row %}
0022     <td>{{ site.tablepadding }}{{ item }}</td>
0023     {% endfor %}
0024   </tr>
0025   {% endfor %}
0026   
0027 </table>