Sha256: 7bda2b2d90e98da9b63094eb59504234df19db235bf426f021f8aad41c59e6ff
Contents?: true
Size: 640 Bytes
Versions: 29
Compression:
Stored size: 640 Bytes
Contents
<section class="o-section"> {% if include.title %} <div class="o-secion-header o-section-header--bordered"> <h3 class="o-section__heading t-h4-super">{{ include.title}}</h3> </div> {% endif %} <table class="u-1margin--top"> <thead> {% for column in include.table[0] %} <th>{{ column[0] }}</th> {% endfor %} </thead> <tbody> {% for row in include.table %} <tr> {% for cell in row %} <td>{{ cell[1] }}</td> {% endfor %} </tr> {% endfor %} </tbody> </table> </section>
Version data entries
29 entries across 29 versions & 2 rubygems