1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-02-17 10:53:57 +00:00
royalnet/templates/profile.html

43 lines
1.3 KiB
HTML
Raw Normal View History

2018-06-04 11:58:27 +02:00
{% extends 'base.html' %}
2018-07-22 17:15:29 +02:00
{% block prehead %}
<meta name="description" content="Profilo Royalnet di {{ ryg.username }}">
2018-10-03 00:18:41 +02:00
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
2018-07-22 17:15:29 +02:00
{% endblock %}
2018-06-04 11:58:27 +02:00
{% block pagetitle %}
2018-06-20 19:00:36 +02:00
{{ ryg.username }}
2018-06-04 11:58:27 +02:00
{% endblock %}
2018-06-05 12:31:11 +02:00
{% block posthead %}
{% if css %}
<style>
2018-06-05 15:11:58 +02:00
{% autoescape false %}
{{ css.css }}
{% endautoescape %}
2018-06-05 12:31:11 +02:00
</style>
{% endif %}
{% endblock %}
2018-06-04 11:58:27 +02:00
{% block body %}
<h1>
2018-08-01 18:14:41 +02:00
Profilo di {{ ryg.username }} {% if session.get('user_id', '') == ryg.id %}<a href="{{ url_for('page_editprofile') }}" id="edit-css">Modifica</a>{% endif %}
2018-06-04 11:58:27 +02:00
</h1>
2019-01-08 19:43:26 +01:00
<div class="profile">
{% if css.bio %}
<div class="box bio">
<div class="upper-box">
Bio
2018-09-07 18:58:19 +02:00
</div>
2019-01-08 19:43:26 +01:00
<div class="lower-box">
{{ bio }}
</div>
</div>
{% endif %}
<div class="game-panels">
2019-01-09 16:52:34 +01:00
{% for record in mini_data %}
{% include "minis/" + record._mini_name + ".html" %}
{% endfor %}
2018-09-07 18:58:19 +02:00
</div>
</div>
2018-06-04 11:58:27 +02:00
{% endblock %}