Skip to content

Instantly share code, notes, and snippets.

@freshcutdevelopment
Created September 24, 2017 02:37
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 freshcutdevelopment/efe251e57f34b7387009b8db5af024bf to your computer and use it in GitHub Desktop.
Save freshcutdevelopment/efe251e57f34b7387009b8db5af024bf to your computer and use it in GitHub Desktop.
Pokemon component - blog
<template bindable="model">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1 ${model.color}">${model.name}</h5>
<small>${model.category}</small>
</div>
<hr/>
<div class="d-flex w-100 justify-content-between">
<img src="${model.imageSource}"/>
<p class="mb-1">
${model.description}
</p>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment