PCv5/app/templates/user.html

10 lines
272 B
HTML
Raw Normal View History

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