mdb-ui-kit/meteor/example/client/bmd.html

15 lines
309 B
HTML
Raw Normal View History

2015-03-17 18:36:14 +03:00
<body>
<h1>Watch the ripple effect on newly created buttons!</h1>
{{> hello}}
</body>
<template name="hello">
<button type="button" class="btn btn-info">Click Me</button>
<hr/>
{{#each buttons}}
<button type="button" class="btn btn-primary">{{name}}</button>
<br/>
{{/each}}
</template>