Files
fulpstation/tgui/scripts/components/section.ract
2016-01-01 17:47:44 -06:00

15 lines
247 B
Plaintext

<section>
{{#if label}}
<span class='label'>{{label}}:</span>
{{#if nowrap}}
{{yield}}
{{else}}
<div class='content'>
{{yield}}
</div>
{{/if}}
{{else}}
{{yield}}
{{/if}}
</section>