1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00
royalnet/templates/profile.html
2018-06-08 20:13:20 +02:00

40 lines
No EOL
952 B
HTML

{% extends 'base.html' %}
{% block pagetitle %}
{{ royal.username }}
{% endblock %}
{% block posthead %}
{% if css %}
<style>
{% autoescape false %}
{{ css.css }}
{% endautoescape %}
</style>
{% endif %}
{% endblock %}
{% block body %}
<h1>
Profilo di {{ royal.username }} {% if session.get('user_id', '') == royal.id %}<a href="/setcss" id="edit-css">Modifica</a>{% endif %}
</h1>
{% include "minis/ryg.html" %}
{% if steam %}
{% include "minis/steam.html" %}
{% endif %}
{% if rl %}
{% include "minis/rl.html" %}
{% endif %}
{% if dota %}
{% include "minis/dota.html" %}
{% endif %}
{% if osu %}
{% include "minis/osu.html" %}
{% endif %}
{% if lol %}
{% include "minis/lol.html" %}
{% endif %}
{% if ow %}
{% include "minis/ow.html" %}
{% endif %}
{% endblock %}