1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-07 11:49:47 +00:00

15 lines
256 B
Handlebars
Raw Normal View History

<div class='form-element label-area'>
{{#if label}}
<label>{{i18n label}}</label>
{{else}}
&nbsp;
{{/if}}
</div>
<div class='form-element input-area'>
{{#if wrapLabel}}
<label>{{yield}}</label>
{{else}}
{{yield}}
{{/if}}
</div>