-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
78 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
<style> | ||
{% for C in site.data.colors %} | ||
.color-{{forloop.index0}} {border-left: 4px solid {{C}};} | ||
.color-{{forloop.index0}} {border-left: 4px solid {{C}}; } | ||
.color-{{forloop.index0}} a {color: #333;} | ||
.color-{{forloop.index0}}-wide {border-left: 15px solid {{C}};} | ||
{% endfor %} | ||
</style> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
layout: default | ||
--- | ||
{% include color-style.html %} | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="column" style="margin-top: 10%; margin-bottom: 10%"> | ||
|
||
<a href="/"><img src="/images/favicon.png" class="avatar" alt="Puzzled Pint Bangalore Logo" /></a> | ||
|
||
<h2 role="heading" class="color-{{page.team.color_index}}-wide">{{page.team.name}}</h2> | ||
<table> | ||
<tr> | ||
<th>Event</th> | ||
<th>Players</th> | ||
<th>Solve Time</th> | ||
</tr> | ||
{% assign rows = page.team.results |reverse%} | ||
{% for row in rows %} | ||
<tr> | ||
<td class=team style="text-align: left;"> | ||
<a href='/standings/{{row.event|date:"%Y-%m"}}/'>{{row.event | date:"%B %Y"}}</a> | ||
<span>{{site.data.event_theme_mapping[row.event]}}</span> | ||
</td> | ||
<td class=time> | ||
<span>{{row.players}}</span> | ||
</td> | ||
<td class="time"> | ||
{% if row.duration != '' %} | ||
<span>{{row.duration}}</span> | ||
{% endif %} | ||
</td> | ||
</tr> | ||
{% endfor %} | ||
|
||
</table> | ||
</div> | ||
</div> | ||
<small>Team Slug: {{page.team.slug}}</small> | ||
<br> | ||
<small> | ||
{% assign aliases = site.data.aliases | where: "slug",page.team.slug %} | ||
{% if aliases.size > 0 %} | ||
The team is known by the following aliases: | ||
{% for i in aliases %} | ||
{{i.name}} | ||
{% endfor %} | ||
{% endif %} | ||
</small> | ||
</div> | ||
|
This file contains 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
File renamed without changes.