Skip to content

Instantly share code, notes, and snippets.

View zraly's full-sized avatar

Jiří Zralý zraly

  • Blueboard.cz s.r.o.
  • Czech Republic
  • X @zraly
View GitHub Profile
@zraly
zraly / FooForm.latte
Last active February 11, 2020 19:19
Formulář jako komponenta s vlastní šablonou / Form as a component with its own template
{form myForm}
<div class="form-group">
{label book class => 'control-label'/}
{input book class => form-control}
</div>
<div class="form-group">
{input send class => 'btn btn-primary'}
</div>
{/form}
@zraly
zraly / index.html
Last active May 4, 2022 12:45
Alpine.js + TailwindCSS Multiselect
<div class="w-64">
<select multiple x-data="multiselect" name="mySelect">
<optgroup label="Names">
<option value="1">John</option>
<option value="2">Peter</option>
<option value="3">Jane</option>
<option value="4">Her Name is Very Long</option>
<option value="5">His Name is Much Much Much Longer</option>
</optgroup>
<optgroup label="Cities">