mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-14 01:18:13 -05:00
19 lines
336 B
HTML
19 lines
336 B
HTML
<div class="mobile-side-scroller">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Variable</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for var in include.scope -%}
|
|
<tr>
|
|
<td><p><code>{{ var.name }}</code></p></td>
|
|
<td><p>{{- var.description -}}</p></td>
|
|
</tr>
|
|
{% endfor -%}
|
|
</tbody>
|
|
</table>
|
|
</div>
|