24 lines
732 B
PHTML
24 lines
732 B
PHTML
<template id="ui-notification">
|
|
<style type="text/css">
|
|
|
|
</style>
|
|
|
|
<div class="notification-wrapper">
|
|
<header>
|
|
<i class="icon-main green fas fa-check"></i>
|
|
<i class="icon-main yellow fas fa-exclamation"></i>
|
|
<i class="icon-main is-error fas fa-times"></i>
|
|
<i class="icon-main is-info fas fa-exclamation"></i>
|
|
|
|
<slot class="is-title" name="title"></slot>
|
|
</header>
|
|
|
|
<section class="message"><slot name="content"></slot></section>
|
|
|
|
{# Todo ! #}
|
|
<progress class="progress" value="45" max="100">45%</progress>
|
|
</div>
|
|
</template>
|
|
|
|
<script defer="defer" src='{% asset "apps/script/component/notification.js" %}'></script>
|