Skip to content

Latest commit

 

History

History
62 lines (57 loc) · 1.83 KB

File metadata and controls

62 lines (57 loc) · 1.83 KB
layout default
title Live Board

{% assign season = site.data.season %}

{{ season.short_title }}

{{ season.title }}

{{ season.premiere }} → {{ season.finale }} · {{ season.days }} days · Week {{ season.current_week }}

{% include status-badge.html status=season.status %} {% if season.voting_open %} {% include status-badge.html status="eviction_open" %} {% else %} no live voting {% endif %}

Eviction desk

Nominated this week

{% if season.voting_open %}

Public voting is open. Save your nominated housemates.

{% else %}
No ongoing eviction voting. Season status: {{ season.status }}.

Last public result was the Big Night. Winner: Fyang Smith (30.66%).

{% endif %}

Big 4 result

{% assign big4 = site.data.housemates | where_exp: "h", "h.place <= 4" %} {% for h in big4 %}

{{ h.display_name }}

{{ h.moniker }}

{% include status-badge.html status=h.status %}

{{ h.vote_percent_finale }}% · Place {{ h.place }}

{% endfor %}

Latest weekly tasks

{% assign tasks = site.data.weekly_tasks | reverse %} {% for t in tasks limit: 4 %}
Week {{ t.week }} · {{ t.title }}

{{ t.summary }}

{% include status-badge.html status=t.status %} {% endfor %}