19 lines
727 B
HTML
19 lines
727 B
HTML
<modals:>
|
||
<app:modals:modal modalId='drops-enabled-modal' header="Drops Enabled!">
|
||
<p>You've unlocked the drop system.</p>
|
||
<p>Here's your first egg! {_user.items.eggs.0.text}</p>
|
||
<p>Feed it some meat to get it to hatch.</p>
|
||
<@footer>
|
||
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
|
||
</@footer>
|
||
</app:modals:modal>
|
||
<app:modals:modal modalId='item-dropped-modal' header="Item Dropped!">
|
||
<p>An item has dropped!</p>
|
||
<p>Here's your {_drop.type} – {_drop.text}!</p>
|
||
<div class="Pet-{_drop.type}"></div>
|
||
<p>{_drop.notes}</p>
|
||
<@footer>
|
||
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
|
||
</@footer>
|
||
</app:modals:modal>
|