{% extends 'base.html' %}

{% block pagetitle %}
    {{ royal.username }}
{% endblock %}

{% block body %}
    <h1>
        Profilo di {{ royal.username }}
    </h1>
    {% if osu %}
        {% include "minis/osu.html" %}
    {% endif %}
    {% if rl %}
        {% include "minis/rl.html" %}
    {% endif %}
    {% if dota %}
        {% include "minis/dota.html" %}
    {% endif %}
    {% if lol %}
        {% include "minis/lol.html" %}
    {% endif %}
{% endblock %}