Add the calendar of your soccer team to Home Assistant. The data is gathered from the Royal Belgian Football Association (RBFA) website in cooporation with Association Clubs Francophones de Football (ACFF) and Voetbal Vlaanderen.
The team number is the number after 'ploeg': https://www.rbfa.be/nl/club/2438/ploeg/300872/overzicht
type: markdown
title: Ranking
content: >-
{% set sensor = "sensor.result_279669" %}
{{state_attr(sensor, "Series") }}
-
{% if state_attr(sensor, "Ranking") != None %}
{% for item in state_attr(sensor, "Ranking") %}
{{ item.position }}. {% if item.id == state_attr(sensor, "TeamID") %}**{{item.team}}**
{% else %}{{item.team}}
{% endif %}
{% endfor %}
{% endif %}