mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced 2026-05-03 21:50:44 +02:00
14 lines
440 B
HTML
14 lines
440 B
HTML
{%- comment -%} creates a table for functions or contexts {%- endcomment -%}
|
|
<table class="description-table">
|
|
<tbody>
|
|
{%- for _object_item in include.objects -%}
|
|
{%- assign _object_name = _object_item[0] -%}
|
|
{%- assign _object = _object_item[1] -%}
|
|
<tr>
|
|
<th>{{ _object.label }}</th>
|
|
<td>{{ _object.description | markdownify }}</td>
|
|
</tr>
|
|
{%- endfor -%}
|
|
</tbody>
|
|
</table>
|