Guest User

Untitled

a guest
Dec 15th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. teams:
  2. - rank: 1
  3. number: 7854
  4. name: Midnight Madness
  5. qp: 10
  6. rp: 437
  7. plays: 5
  8.  
  9. - rank: 2
  10. number: 7641
  11. name: MSET Beta Fish
  12. qp: 10
  13. rp: 412
  14. plays: 5
  15.  
  16. - rank: 3
  17. number: 12804
  18. name: LED
  19. qp: 10
  20. rp: 302
  21. plays: 5
  22.  
  23. ---
  24. layout: pastTournaments
  25. title: Google Tournament
  26. permalink: /tournaments/google/
  27. ---
  28.  
  29. <h5 class="column-wrapper centered">These are the rankings for the Google Qualifying tournament, which was hosted on December 2, 2017.</h5>
  30. <br>
  31. <div class="column-wrapper">
  32. <div class="grid-x">
  33. <div class="large-6 shrink cell">
  34. <table>
  35. <thead>
  36. <tr>
  37. <th width="20" class="centered">Rank</th>
  38. <th width="150" class="centered">Team Number</th>
  39. <th width="150" class="centered">Team</th>
  40. <th width="50" class="centered">QP</th>
  41. <th width="50" class="centered">RP</th>
  42. <th width="50" class="centered">Plays</th>
  43. </tr>
  44. </thead>
  45. <tbody>
  46. <!--This is where the jekyll starts-->
  47. {% assign order = 0 %}
  48. {% for team in site.data.google.teams %}
  49. {% assign order = order | plus: 1 %}
  50. {% if team.rank == order %}
  51. <tr>
  52. <td class="centered">{{ team.rank }}</td>
  53. <td class="centered">{{ team.number }}</td>
  54. <td class="centered">{{ team.name }}</td>
  55. <td class="centered">{{ team.qp }}</td>
  56. <td class="centered">{{ team.rp }}</td>
  57. <td class="centered">{{ team.plays }}</td>
  58. </tr>
  59. {% endif %}
  60. {% endfor%}
  61. </tbody>
  62. </table>
  63. </div>
  64. </div>
Add Comment
Please, Sign In to add comment