Skip to content

Instantly share code, notes, and snippets.

@henryjuan
Created April 3, 2013 13:09
Show Gist options
  • Save henryjuan/5301064 to your computer and use it in GitHub Desktop.
Save henryjuan/5301064 to your computer and use it in GitHub Desktop.
前端开发者使用 jQuery Templates plugin
<script id="tmpl-timeline" type="text/x-jquery-tmpl">
<div class="timeline-day">
<div class="timeline-day-date {{= classToday}}">
<div class="timeline-day-vbar"></div>
<div class="timeline-day-date-numbers">
<strong>{{= sDate.substr(0,4)}}<br>
<strong class="datelarge">{{= sDate.substr(5,5)}}</strong></strong>
</div>
</div>
<div class="timeline-day-thumbs">
{{each(i,event) events}}
<div class="timeline-day-event">
<img id="_event_{{= event.id}}" src="{{= event.eventPhoto.large}}" title="{{= event.groupName}}" />
<div class="timeline-image-note">{{= event.country}} / {{= event.title}}</div>
</div>
{{/each}}
</div>
</div>
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment