Created
April 3, 2013 13:09
-
-
Save henryjuan/5301064 to your computer and use it in GitHub Desktop.
前端开发者使用 jQuery Templates plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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