mirror of
				https://github.com/mdbootstrap/mdb-ui-kit.git
				synced 2025-11-04 01:47:35 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			309 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			309 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<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>
 |