Skip to content

Instantly share code, notes, and snippets.

@jessecogollo
Created February 9, 2015 03:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jessecogollo/3f89269bdbf013d2d341 to your computer and use it in GitHub Desktop.
Save jessecogollo/3f89269bdbf013d2d341 to your computer and use it in GitHub Desktop.
flickr.html (Proyecto base aurelia.io)
<template>
<section>
<h2>${heading}</h2>
<div class="row">
<div class="col-sm-6 col-md-3" repeat.for="image of images">
<a class="thumbnail">
<img style="width: 260px; height: 180px;" src.bind="image.media.m"/>
</a>
</div>
</div>
</section>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment