← NHL Scoreboard

{{ bracket.year }} Stanley Cup Playoffs

The road to 16 wins
{# Desktop: 7-column grid (East R1 | R2 | CF | Cup | CF | R2 | R1 West) #}

First Round

{% for m in bracket.east_r1 %}{% include "_bracket_matchup.html" %}{% endfor %}

Second Round

{% for m in bracket.east_r2 %}{% include "_bracket_matchup.html" %}{% endfor %}

East Final

{% for m in bracket.east_cf %}{% include "_bracket_matchup.html" %}{% endfor %}

Cup Final

{% for m in bracket.cup %}{% include "_bracket_matchup.html" %}{% endfor %}

West Final

{% for m in bracket.west_cf %}{% include "_bracket_matchup.html" %}{% endfor %}

Second Round

{% for m in bracket.west_r2 %}{% include "_bracket_matchup.html" %}{% endfor %}

First Round

{% for m in bracket.west_r1 %}{% include "_bracket_matchup.html" %}{% endfor %}
{# Mobile: round-by-round accordion, round 1 open by default #}
{% for rnd in bracket.rounds %}
{{ rnd.label }}
{% if rnd.get('east') %}

Eastern

{% for m in rnd.east %}{% include "_bracket_matchup.html" %}{% endfor %}
{% endif %} {% if rnd.get('west') %}

Western

{% for m in rnd.west %}{% include "_bracket_matchup.html" %}{% endfor %}
{% endif %} {% if rnd.get('cup') %}
{% for m in rnd.cup %}{% include "_bracket_matchup.html" %}{% endfor %}
{% endif %}
{% endfor %}