meteor__coursera-meteor-1/image_share.html
2016-01-14 16:20:57 +01:00

29 lines
544 B
HTML

<head>
<title>image_share</title>
</head>
<body>
<h1>Welcome to coursera!</h1>
<div class="container">
{{> images}}
</div>
</body>
<template name="images">
<div class="row">
{{#each images}}
<div class="col-xs-12 col-md-3">
<div class="thumbnail">
<img class="js-image" src="{{img_src}}"
alt="{{img_alt}}"/>
<div class="caption">
<h3>Thumbnail label</h3>
<p>description of the image</p>
</div>
</div>
</div> <!-- / col -->
{{/each}}
</div> <!-- / row -->
</template>