KankenOnline/kanken_online/templates/user_page.html

10 lines
296 B
HTML
Raw Permalink Normal View History

2024-10-18 15:36:03 +00:00
{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}{{ localize("user_introduction") }} {{ username }}{% endblock %}</h1>
{% endblock %}
{% block content %}
2024-10-19 16:13:31 +00:00
<img id="pfp" src="{{ pfp_filename }}" width=128 height=128>
<span id="username">{{ username }}</span>
2024-10-18 15:36:03 +00:00
{% endblock %}