Skip to content

Instantly share code, notes, and snippets.

@joneff
Created May 18, 2010 11:10
Show Gist options
  • Save joneff/404881 to your computer and use it in GitHub Desktop.
Save joneff/404881 to your computer and use it in GitHub Desktop.
<!-- customer view template -->
<div class="item-customer">
<span class="thumb">
{{customer_logo}}
</span>
<h2>
{{customer_name}}
</h2>
<div>
{{customer_short_desc}}
{{customer_full_desc}}
</div>
</div>
<!-- product view template -->
<div class="item-product">
<span class="thumb">
{{product_small_thumb}}
</span>
<h2>
{{product_name}}
</h2>
<div>
<p>{{product_type}}</p>
{{product_long_desc}}
</div>
</div>
<!-- product edit template -->
<div class="fb">
<div class="fb-form">
{{product_name}}
{{url_alias}}
{{product_type}}
{{product_small_thumb}}
{{product_short_desc}}
{{product_full_desc}}
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment