Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: pages/team.tmpl

Issue 29334171: Issue 3410 - Added date sort / format for press releases (Closed)
Left Patch Set: Fixed rename, typos, and function names Created Jan. 25, 2016, 4:18 p.m.
Right Patch Set: Fixed datetime call Created Feb. 9, 2016, 4 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « includes/press/releases.tmpl ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 title=Meet the Team 1 title=Meet the Team
2 2
3 <header class="page-title"> 3 <header class="page-title">
4 <h1>Meet the Team</h1> 4 <h1>Meet the Team</h1>
5 </header> 5 </header>
6 6
7 {%- from "includes/globals" import people %} 7 {%- from "includes/globals" import people %}
8 8
9 {%- macro profile(date, country, image, name, title, description) %} 9 {%- macro profile(date, country, image, name, title, description) %}
10 <div class="profile column"> 10 <div class="profile column">
11 <p> 11 <p>
12 <img class="profile-image" src="/images/people/{{image}}" width="120" heig ht="120" alt=""/> 12 <img class="profile-image" src="/images/people/{{image}}" width="120" heig ht="120" alt=""/>
13 <img class="country-image" src="/images/flags/{{country}}.png" width="30" height="30" alt=""/> 13 <img class="country-image" src="/images/flags/{{country}}.png" width="30" height="30" alt=""/>
14 </p> 14 </p>
15 <h3 class="heading centered"><span>{{title}}</span></h3> 15 <h3 class="heading centered"><span>{{title}}</span></h3>
16 <h1>{{name}}</h1> 16 <h1>{{name}}</h1>
17 <h2>{{description}}</h2> 17 <h2>{{description}}</h2>
18 </div> 18 </div>
19 {% endmacro %} 19 {% endmacro %}
20 20
21 <div class="content-block columns-container four-columns"> 21 <div class="content-block columns-container four-columns">
22 {%- for person in people|randomsortbydate(basedate="2011-02-22") %} 22 {%- for person in people|teamsort(basedate="2011-02-22") %}
23 {%- if loop.index % 4 == 1 and not loop.first %} 23 {%- if loop.index % 4 == 1 and not loop.first %}
24 </div> 24 </div>
25 <div class="content-block columns-container four-columns"> 25 <div class="content-block columns-container four-columns">
26 {%- endif %} 26 {%- endif %}
27 27
28 {{profile(*person)}} 28 {{profile(*person)}}
29 {%- endfor %} 29 {%- endfor %}
30 </div> 30 </div>
31 31
32 <!-- Flag icons: Copyright (c) 2013 Go Squared Ltd. http://www.gosquared.com/ -- > 32 <!-- Flag icons: Copyright (c) 2013 Go Squared Ltd. http://www.gosquared.com/ -- >
LEFTRIGHT

Powered by Google App Engine
This is Rietveld