PCv5/app/templates/user.html

15 lines
338 B
HTML

{% extends "base/base.html" %}
{% block title %}
<h1>Profil de '{{ user.name }}'</h1>
{% endblock %}
{% block content %}
<section>
<div>
<img class="avatar" src="{{ url_for('static', filename=user.avatar) }}" alt="{{ user.name }}" style="display:inline; vertical-align:middle;"/>
{{ user.name }}
</div>
</section>
{% endblock %}